diff options
author | Dundar Göc <gocdundar@gmail.com> | 2021-07-26 15:20:51 +0200 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2021-07-26 17:12:35 +0200 |
commit | dfd9d861dc218dfe2b5e63eb4d6b77e163b33d59 (patch) | |
tree | 1a2645100e08d01f1da4c9dd88413fd7432b894d /src/nvim/misc1.c | |
parent | 7b520cca3a8c6850610d899b180c3306df8899ab (diff) | |
download | rneovim-dfd9d861dc218dfe2b5e63eb4d6b77e163b33d59.tar.gz rneovim-dfd9d861dc218dfe2b5e63eb4d6b77e163b33d59.tar.bz2 rneovim-dfd9d861dc218dfe2b5e63eb4d6b77e163b33d59.zip |
refactor: replace TRUE/FALSE with true/false
Focus is on global variables.
Diffstat (limited to 'src/nvim/misc1.c')
-rw-r--r-- | src/nvim/misc1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/misc1.c b/src/nvim/misc1.c index 19239036fd..771174b854 100644 --- a/src/nvim/misc1.c +++ b/src/nvim/misc1.c @@ -849,7 +849,7 @@ void msgmore(long n) } if (msg(msg_buf)) { set_keep_msg(msg_buf, 0); - keep_msg_more = TRUE; + keep_msg_more = true; } } } |