aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_getln.c
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2021-07-30 17:53:07 +0200
committerGitHub <noreply@github.com>2021-07-30 17:53:07 +0200
commit15698eb5a1991790476febbd3b9f9b392e74f6b9 (patch)
tree274a87886add670ba1339a655e38c5cbadf430b1 /src/nvim/ex_getln.c
parent7b627ece8dfeb180b20c0be8a126d007521a4b66 (diff)
parent94120d2fd5a9e1f340921283bb5f5db1824899c2 (diff)
downloadrneovim-15698eb5a1991790476febbd3b9f9b392e74f6b9.tar.gz
rneovim-15698eb5a1991790476febbd3b9f9b392e74f6b9.tar.bz2
rneovim-15698eb5a1991790476febbd3b9f9b392e74f6b9.zip
Merge pull request #15206 from dundargoc/refactor/a-song-of-true-and-false/global-variables-2
refactor: replace TRUE/FALSE with true/false
Diffstat (limited to 'src/nvim/ex_getln.c')
-rw-r--r--src/nvim/ex_getln.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c
index 855f71ca28..d3a5c383e5 100644
--- a/src/nvim/ex_getln.c
+++ b/src/nvim/ex_getln.c
@@ -3455,7 +3455,7 @@ void redrawcmdline(void)
{
if (cmd_silent)
return;
- need_wait_return = FALSE;
+ need_wait_return = false;
compute_cmdrow();
redrawcmd();
cursorcmd();
@@ -4225,13 +4225,13 @@ static int showmatches(expand_T *xp, int wildmenu)
}
if (!wildmenu) {
- msg_didany = FALSE; /* lines_left will be set */
- msg_start(); /* prepare for paging */
+ msg_didany = false; // lines_left will be set
+ msg_start(); // prepare for paging
msg_putchar('\n');
ui_flush();
cmdline_row = msg_row;
- msg_didany = FALSE; /* lines_left will be set again */
- msg_start(); /* prepare for paging */
+ msg_didany = false; // lines_left will be set again
+ msg_start(); // prepare for paging
}
if (got_int) {