mirror of https://github.com/MidnightCommander/mc
(edit_print_string): refactor loop.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
parent
293fdafaa7
commit
9a964edea9
|
@ -1687,10 +1687,10 @@ edit_move_block_to_left (WEdit * edit)
|
||||||
static size_t
|
static size_t
|
||||||
edit_print_string (WEdit * e, const char *s)
|
edit_print_string (WEdit * e, const char *s)
|
||||||
{
|
{
|
||||||
size_t i = 0;
|
size_t i;
|
||||||
|
|
||||||
while (s[i] != '\0')
|
for (i = 0; s[i] != '\0'; i++)
|
||||||
edit_execute_cmd (e, CK_InsertChar, (unsigned char) s[i++]);
|
edit_execute_cmd (e, CK_InsertChar, (unsigned char) s[i]);
|
||||||
e->force |= REDRAW_COMPLETELY;
|
e->force |= REDRAW_COMPLETELY;
|
||||||
edit_update_screen (e);
|
edit_update_screen (e);
|
||||||
return i;
|
return i;
|
||||||
|
|
Loading…
Reference in New Issue