Support sgrmouse for skip_escseq

Origin: https://sourceforge.net/p/w3m/patches/65/#e2aa
This commit is contained in:
Egmont Koblinger
2015-08-09 06:57:00 +09:00
committed by Tatsuya Kinoshita
parent 7828a64573
commit b449322c1a

View File

@@ -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