From 1f49268c46fcbe65f7e2e2cb620e6f51c059cf9e Mon Sep 17 00:00:00 2001 From: dundargoc <33953936+dundargoc@users.noreply.github.com> Date: Sat, 18 Sep 2021 00:24:39 +0200 Subject: refactor: convert TRUE/FALSE to true/false (#15660) --- src/nvim/getchar.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/nvim/getchar.c') diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c index 11e3b9bc2d..3bf9d92696 100644 --- a/src/nvim/getchar.c +++ b/src/nvim/getchar.c @@ -3916,9 +3916,9 @@ eval_map_expr ( save_cursor = curwin->w_cursor; save_msg_col = msg_col; save_msg_row = msg_row; - p = eval_to_string(expr, NULL, FALSE); - --textlock; - --ex_normal_lock; + p = eval_to_string(expr, NULL, false); + textlock--; + ex_normal_lock--; curwin->w_cursor = save_cursor; msg_col = save_msg_col; msg_row = save_msg_row; -- cgit