aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/getchar.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-04-27 00:04:36 -0400
committerJustin M. Keyes <justinkz@gmail.com>2016-04-27 00:04:36 -0400
commit2adb8acebd1b50d6259834082d5a21788c0e3eeb (patch)
treec117823609fe8c8c366c88e545d7bb05e4307003 /src/nvim/getchar.c
parentec916bb9834bd7778e2b1b311e0529cf739b7f2b (diff)
parente4146dd7df0f1ba932a01a79d6dd511914763c72 (diff)
downloadrneovim-2adb8acebd1b50d6259834082d5a21788c0e3eeb.tar.gz
rneovim-2adb8acebd1b50d6259834082d5a21788c0e3eeb.tar.bz2
rneovim-2adb8acebd1b50d6259834082d5a21788c0e3eeb.zip
Merge pull request #4649 from justinmk/vimpatches
vim-patch:7.4.1092
Diffstat (limited to 'src/nvim/getchar.c')
-rw-r--r--src/nvim/getchar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c
index dba83d3684..43cdd7a033 100644
--- a/src/nvim/getchar.c
+++ b/src/nvim/getchar.c
@@ -1562,7 +1562,7 @@ int char_avail(void)
{
int retval;
- ++no_mapping;
+ no_mapping++;
retval = vpeekc();
--no_mapping;
return retval != NUL;