From be1cccd2526abc1d81d1a15d8375a10cf187c823 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Wed, 27 May 2015 21:42:21 +0200 Subject: [PATCH] Mark an issue that breaks tests --- driver-csi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/driver-csi.c b/driver-csi.c index 5701e19..e173bca 100644 --- a/driver-csi.c +++ b/driver-csi.c @@ -456,6 +456,7 @@ parse_csi (termo_t *tk, size_t introlen, size_t *csi_len, // Specifically allowing the rxvt special character // for shifted function keys to end a CSI-like sequence, // otherwise expecting ECMA-48-like input + // FIXME: this breaks mode report parsing (e.g. "\e[4;1$y") unsigned char c = CHARAT (csi_end); if ((c >= 0x40 && c < 0x80) || c == '$') break;