aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/getchar.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-05-20 10:42:31 +0200
committerGitHub <noreply@github.com>2019-05-20 10:42:31 +0200
commit60710dee82070834b2bd156738cd1a5379dfc640 (patch)
tree72cf74ab0373fc59b9d09605248bc1d66ceec36c /src/nvim/getchar.c
parent8c842b39ba7e88fbe6e2fd562731030d5499e343 (diff)
parent7ea350456d6b2f9c92f3dcf6feb7daa3e0abc079 (diff)
downloadrneovim-60710dee82070834b2bd156738cd1a5379dfc640.tar.gz
rneovim-60710dee82070834b2bd156738cd1a5379dfc640.tar.bz2
rneovim-60710dee82070834b2bd156738cd1a5379dfc640.zip
Merge #10033 from janlazo/vim-8.0.1082
vim-patch:8.0.{1082,1497,1498,1513},8.1.{901,1357,1358}
Diffstat (limited to 'src/nvim/getchar.c')
-rw-r--r--src/nvim/getchar.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c
index f8c7dc613b..ec14803a2e 100644
--- a/src/nvim/getchar.c
+++ b/src/nvim/getchar.c
@@ -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;