mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 05:28:33 +00:00
refactor: convert TRUE/FALSE to true/false (#15660)
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user