diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2021-09-18 00:24:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-18 00:24:39 +0200 |
commit | 1f49268c46fcbe65f7e2e2cb620e6f51c059cf9e (patch) | |
tree | e7cea7cc17ce0e5004ef040f5d0ffa1384c06ea9 /src/nvim/getchar.c | |
parent | ede5695eb194e9b607421415525177888b447753 (diff) | |
download | rneovim-1f49268c46fcbe65f7e2e2cb620e6f51c059cf9e.tar.gz rneovim-1f49268c46fcbe65f7e2e2cb620e6f51c059cf9e.tar.bz2 rneovim-1f49268c46fcbe65f7e2e2cb620e6f51c059cf9e.zip |
refactor: convert TRUE/FALSE to true/false (#15660)
Diffstat (limited to 'src/nvim/getchar.c')
-rw-r--r-- | src/nvim/getchar.c | 6 |
1 files changed, 3 insertions, 3 deletions
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; |