csi: xtrestore: add missing break

This commit is contained in:
Daniel Eklöf 2020-08-18 21:13:50 +02:00
parent e1648bd2b7
commit 79d20d75d2
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

2
csi.c
View file

@ -591,7 +591,7 @@ xtrestore(struct terminal *term, unsigned param)
{
bool enable;
switch (param) {
case 1: enable = term->xtsave.application_cursor_keys;
case 1: enable = term->xtsave.application_cursor_keys; break;
case 3: return;
case 4: return;
case 5: enable = term->xtsave.reverse; break;