diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-07-08 16:17:21 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-07-08 16:34:35 +0200 |
commit | 829e1f2c43f84caa74c68e8a473d5faf8ec96c48 (patch) | |
tree | 93bb22888e979af1e86dba6c419a441f44e67f42 /src/nvim/getchar.c | |
parent | 0b88bf256d629cfe53c94896e140511e7f312b25 (diff) | |
download | rneovim-829e1f2c43f84caa74c68e8a473d5faf8ec96c48.tar.gz rneovim-829e1f2c43f84caa74c68e8a473d5faf8ec96c48.tar.bz2 rneovim-829e1f2c43f84caa74c68e8a473d5faf8ec96c48.zip |
lint
Diffstat (limited to 'src/nvim/getchar.c')
-rw-r--r-- | src/nvim/getchar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c index adf0ff1e53..a22b716bb6 100644 --- a/src/nvim/getchar.c +++ b/src/nvim/getchar.c @@ -4197,7 +4197,7 @@ static char_u * translate_mapping ( } str += 2; } - if (IS_SPECIAL(c) || modifiers) { /* special key */ + if (IS_SPECIAL(c) || modifiers) { // special key if (expmap) { ga_clear(&ga); return NULL; |