diff options
Diffstat (limited to 'src/nvim/getchar.c')
-rw-r--r-- | src/nvim/getchar.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c index f8cf630411..294cd60736 100644 --- a/src/nvim/getchar.c +++ b/src/nvim/getchar.c @@ -1560,8 +1560,7 @@ int vgetc(void) buf[0] = (char_u)c; for (i = 1; i < n; i++) { buf[i] = (char_u)vgetorpeek(true); - if (buf[i] == K_SPECIAL - ) { + if (buf[i] == K_SPECIAL) { // Must be a K_SPECIAL - KS_SPECIAL - KE_FILLER sequence, // which represents a K_SPECIAL (0x80), // or a CSI - KS_EXTRA - KE_CSI sequence, which represents |