diff options
author | Dundar Göc <gocdundar@gmail.com> | 2021-08-03 11:04:43 +0200 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2021-08-12 10:37:40 +0200 |
commit | c0767bd4f3ce7b34bb77da0657c49ba10ba1b32e (patch) | |
tree | 485cf37c24193992d9eea6def2c7d0ab2fee7b4d /src/nvim/ex_cmds.c | |
parent | 7d2233fad007a3dd42481f8ffc01e69b57a17f9e (diff) | |
download | rneovim-c0767bd4f3ce7b34bb77da0657c49ba10ba1b32e.tar.gz rneovim-c0767bd4f3ce7b34bb77da0657c49ba10ba1b32e.tar.bz2 rneovim-c0767bd4f3ce7b34bb77da0657c49ba10ba1b32e.zip |
refactor: replace TRUE/FALSE with true/false
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r-- | src/nvim/ex_cmds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 041140211e..0c099085a0 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -2763,8 +2763,8 @@ int do_ecmd( } } - /* Check if cursors in other windows on the same buffer are still valid */ - check_lnums(FALSE); + // Check if cursors in other windows on the same buffer are still valid + check_lnums(false); /* * Did not read the file, need to show some info about the file. |