diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-08-08 02:22:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-08 02:22:34 +0200 |
commit | b7a417c5e6b510a0023e544463edd6feef30f9d2 (patch) | |
tree | ee335ecbd0542a81a3cae584a4165dc0620131d6 /src/nvim/ex_getln.c | |
parent | c06613d2f6c3f3a864c43e03b95d12efb3e0f4a6 (diff) | |
parent | d5e8b3f451120d7b40d72b54d749fbe7b54ca90f (diff) | |
download | rneovim-b7a417c5e6b510a0023e544463edd6feef30f9d2.tar.gz rneovim-b7a417c5e6b510a0023e544463edd6feef30f9d2.tar.bz2 rneovim-b7a417c5e6b510a0023e544463edd6feef30f9d2.zip |
Merge #8744 from janlazo/vim-8.0.0890
Diffstat (limited to 'src/nvim/ex_getln.c')
-rw-r--r-- | src/nvim/ex_getln.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c index 353f724fe4..1810056a4a 100644 --- a/src/nvim/ex_getln.c +++ b/src/nvim/ex_getln.c @@ -6084,7 +6084,7 @@ static int open_cmdwin(void) /* Replace the empty last line with the current command-line and put the * cursor there. */ - ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, TRUE); + ml_replace(curbuf->b_ml.ml_line_count, ccline.cmdbuff, true); curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; curwin->w_cursor.col = ccline.cmdpos; changed_line_abv_curs(); |