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/keymap.c | |
parent | 0b88bf256d629cfe53c94896e140511e7f312b25 (diff) | |
download | rneovim-829e1f2c43f84caa74c68e8a473d5faf8ec96c48.tar.gz rneovim-829e1f2c43f84caa74c68e8a473d5faf8ec96c48.tar.bz2 rneovim-829e1f2c43f84caa74c68e8a473d5faf8ec96c48.zip |
lint
Diffstat (limited to 'src/nvim/keymap.c')
-rw-r--r-- | src/nvim/keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/keymap.c b/src/nvim/keymap.c index 295f246126..3d7ebb6382 100644 --- a/src/nvim/keymap.c +++ b/src/nvim/keymap.c @@ -817,7 +817,7 @@ char_u *replace_termcodes(const char_u *from, const size_t from_len, while (src <= end) { // Check for special <> keycodes, like "<C-S-LeftMouse>" if (special && (do_lt || ((end - src) >= 3 - && STRNCMP(src, "<lt>", 4) != 0))) { + && STRNCMP(src, "<lt>", 4) != 0))) { // Replace <SID> by K_SNR <script-nr> _. // (room: 5 * 6 = 30 bytes; needed: 3 + <nr> + 1 <= 14) if (end - src >= 4 && STRNICMP(src, "<SID>", 5) == 0) { |