diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/eval.c | 4 | ||||
-rw-r--r-- | src/nvim/getchar.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 60ebc34ea9..7849a340ab 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -6707,7 +6707,7 @@ static struct fst { { "did_filetype", 0, 0, f_did_filetype }, { "diff_filler", 1, 1, f_diff_filler }, { "diff_hlID", 2, 2, f_diff_hlID }, - {"disable_char_avail_for_testing", 1, 1, f_disable_char_avail_for_testing}, + { "disable_char_avail_for_testing", 1, 1, f_disable_char_avail_for_testing }, { "empty", 1, 1, f_empty }, { "escape", 2, 2, f_escape }, { "eval", 1, 1, f_eval }, @@ -8585,7 +8585,7 @@ static void f_diff_hlID(typval_T *argvars, typval_T *rettv) // // "disable_char_avail_for_testing({expr})" function -// +// static void f_disable_char_avail_for_testing(typval_T *argvars, typval_T *rettv) FUNC_ATTR_NONNULL_ARG(1) { diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c index 74e5526caa..b5e1e586bd 100644 --- a/src/nvim/getchar.c +++ b/src/nvim/getchar.c @@ -1565,9 +1565,9 @@ int char_avail(void) // When disable_char_avail_for_testing(1) was called pretend // there is no typeahead if (disable_char_avail_for_testing) { - return FALSE; + return false; } - ++no_mapping; + no_mapping++; retval = vpeekc(); --no_mapping; return retval != NUL; |