diff options
author | Dundar Göc <gocdundar@gmail.com> | 2021-07-26 22:17:23 +0200 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2021-07-30 12:29:32 +0200 |
commit | 94120d2fd5a9e1f340921283bb5f5db1824899c2 (patch) | |
tree | 65cbfbb3a174c8b24b991b2322828bf89aac3c24 /src/nvim/spellfile.c | |
parent | c642f3ac27aa842e374334d11291fd5129ab6887 (diff) | |
download | rneovim-94120d2fd5a9e1f340921283bb5f5db1824899c2.tar.gz rneovim-94120d2fd5a9e1f340921283bb5f5db1824899c2.tar.bz2 rneovim-94120d2fd5a9e1f340921283bb5f5db1824899c2.zip |
refactor: replace TRUE/FALSE with true/false
Diffstat (limited to 'src/nvim/spellfile.c')
-rw-r--r-- | src/nvim/spellfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/spellfile.c b/src/nvim/spellfile.c index 0597f392e7..15271e831c 100644 --- a/src/nvim/spellfile.c +++ b/src/nvim/spellfile.c @@ -3945,7 +3945,7 @@ static int tree_add_word(spellinfo_T *spin, char_u *word, wordnode_T *root, int msg_start(); msg_puts(_(msg_compressing)); msg_clr_eos(); - msg_didout = FALSE; + msg_didout = false; msg_col = 0; ui_flush(); } |