diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-04-30 03:57:24 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-04-30 05:13:06 -0400 |
commit | 0e7048ae0558e457d37ce2d13dc5f1f9e62deb49 (patch) | |
tree | 7b892b17acbcac5e8298b641e336ee7de05647dd /src/nvim/ex_getln.c | |
parent | c3edbf813a2a67d5d0889ff1420407dfb78847cb (diff) | |
download | rneovim-0e7048ae0558e457d37ce2d13dc5f1f9e62deb49.tar.gz rneovim-0e7048ae0558e457d37ce2d13dc5f1f9e62deb49.tar.bz2 rneovim-0e7048ae0558e457d37ce2d13dc5f1f9e62deb49.zip |
lint
Diffstat (limited to 'src/nvim/ex_getln.c')
-rw-r--r-- | src/nvim/ex_getln.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c index f3ae3a5e5d..ece2b59bc6 100644 --- a/src/nvim/ex_getln.c +++ b/src/nvim/ex_getln.c @@ -6110,9 +6110,9 @@ static int open_cmdwin(void) do { if (++i == hislen) i = 0; - if (history[histtype][i].hisstr != NULL) - ml_append(lnum++, history[histtype][i].hisstr, - (colnr_T)0, FALSE); + if (history[histtype][i].hisstr != NULL) { + ml_append(lnum++, history[histtype][i].hisstr, (colnr_T)0, false); + } } while (i != hisidx[histtype]); } } |