This commit is contained in:
Jan Edmund Lazo 2018-09-14 01:02:34 -04:00
parent db90c0c9bf
commit a6d4a2fb8d
2 changed files with 2 additions and 2 deletions

View File

@ -974,7 +974,7 @@ static char_u *get_loop_line(int c, void *cookie, int indent)
}
KeyTyped = false;
++cp->current_line;
cp->current_line++;
wp = (wcmd_T *)(cp->lines_gap->ga_data) + cp->current_line;
sourcing_lnum = wp->lnum;
return vim_strsave(wp->line);

View File

@ -266,7 +266,7 @@ do_tag (
goto end_do_tag;
}
if (type == DT_POP) { /* go to older position */
if (type == DT_POP) { // go to older position
const bool old_KeyTyped = KeyTyped;
if ((tagstackidx -= count) < 0) {
EMSG(_(bottommsg));