aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/keymap.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-07-08 16:17:21 +0200
committerJustin M. Keyes <justinkz@gmail.com>2017-07-08 16:34:35 +0200
commit829e1f2c43f84caa74c68e8a473d5faf8ec96c48 (patch)
tree93bb22888e979af1e86dba6c419a441f44e67f42 /src/nvim/keymap.c
parent0b88bf256d629cfe53c94896e140511e7f312b25 (diff)
downloadrneovim-829e1f2c43f84caa74c68e8a473d5faf8ec96c48.tar.gz
rneovim-829e1f2c43f84caa74c68e8a473d5faf8ec96c48.tar.bz2
rneovim-829e1f2c43f84caa74c68e8a473d5faf8ec96c48.zip
lint
Diffstat (limited to 'src/nvim/keymap.c')
-rw-r--r--src/nvim/keymap.c2
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) {