vim-patch:8.1.1358: cannot enter character with a CSI byte

Problem:    Cannot enter character with a CSI byte.
Solution:   Only check "gui.in_use" when VIMDLL is defined. (Ken Takata,
            closes vim/vim#4396)
386b43e594
This commit is contained in:
Jan Edmund Lazo 2019-05-19 23:30:19 -04:00
parent 91c1737de6
commit 7ea350456d

View File

@ -1287,9 +1287,9 @@ openscript (
oldcurscript = curscript;
do {
update_topline_cursor(); /* update cursor position and topline */
normal_cmd(&oa, FALSE); /* execute one command */
vpeekc(); /* check for end of file */
update_topline_cursor(); // update cursor position and topline
normal_cmd(&oa, false); // execute one command
vpeekc(); // check for end of file
} while (scriptin[oldcurscript] != NULL);
State = save_State;