diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-08-18 10:10:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-18 10:10:42 +0200 |
commit | 7bff642169438a66557b65d6aba80536eaf570fa (patch) | |
tree | d7857ea282874735b366399e98db2f9ec3e8d13b /src/nvim/ex_cmds.c | |
parent | 15b736d6e88dba114294b84a21e463b77a0b2857 (diff) | |
parent | c0767bd4f3ce7b34bb77da0657c49ba10ba1b32e (diff) | |
download | rneovim-7bff642169438a66557b65d6aba80536eaf570fa.tar.gz rneovim-7bff642169438a66557b65d6aba80536eaf570fa.tar.bz2 rneovim-7bff642169438a66557b65d6aba80536eaf570fa.zip |
Merge pull request #15249 from dundargoc/refactor/a-song-of-true-and-false
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. |