From c0767bd4f3ce7b34bb77da0657c49ba10ba1b32e Mon Sep 17 00:00:00 2001 From: Dundar Göc Date: Tue, 3 Aug 2021 11:04:43 +0200 Subject: refactor: replace TRUE/FALSE with true/false --- src/nvim/ex_cmds.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/ex_cmds.c') 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. -- cgit