globals: KeyTyped is bool

This commit is contained in:
Jan Edmund Lazo
2018-09-14 01:01:00 -04:00
parent 20354dbd75
commit db90c0c9bf
10 changed files with 15 additions and 16 deletions

View File

@@ -400,7 +400,7 @@ int do_cmdline(char_u *cmdline, LineGetter fgetline,
*/
if (!(flags & DOCMD_KEYTYPED)
&& !getline_equal(fgetline, cookie, getexline))
KeyTyped = FALSE;
KeyTyped = false;
/*
* Continue executing command lines:
@@ -973,7 +973,7 @@ static char_u *get_loop_line(int c, void *cookie, int indent)
return line;
}
KeyTyped = FALSE;
KeyTyped = false;
++cp->current_line;
wp = (wcmd_T *)(cp->lines_gap->ga_data) + cp->current_line;
sourcing_lnum = wp->lnum;