diff options
Diffstat (limited to 'terms.c')
-rw-r--r-- | terms.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -2247,6 +2247,10 @@ skip_escseq(void) getch(); getch(); getch(); + } else if (is_xterm && c == '<') { + c = getch(); + while (IS_DIGIT(c) || c == ';') + c = getch(); } else #endif |