csi: add unknown private escapes 's' and 'r', seen with ncmpcpp

This commit is contained in:
Daniel Eklöf 2019-07-03 16:00:27 +02:00
parent 43045a98e2
commit b5dccf2883
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

7
csi.c
View file

@ -714,6 +714,13 @@ csi_dispatch(struct terminal *term, uint8_t final)
break;
}
case 's':
case 'r':
/* ??? */
/* Seen with ncmpcpp */
LOG_WARN("unimplemented: CSI ?%c", final);
break;
default:
LOG_ERR("CSI: intermediate '?': unimplemented final: %c", final);
abort();