diff options
Diffstat (limited to 'src/nvim/misc1.c')
-rw-r--r-- | src/nvim/misc1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/misc1.c b/src/nvim/misc1.c index 09549e86ca..0bb5a8468d 100644 --- a/src/nvim/misc1.c +++ b/src/nvim/misc1.c @@ -2321,7 +2321,7 @@ int get_keystroke(void) * terminal code to complete. */ n = os_inchar(buf + len, maxlen, len == 0 ? -1L : 100L, 0); if (n > 0) { - /* Replace zero and CSI by a special key code. */ + // Replace zero and CSI by a special key code. n = fix_input_buffer(buf + len, n); len += n; waited = 0; |