diff options
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; |