From 79d20d75d28c393dac1be50bce253ba94cae4f0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Tue, 18 Aug 2020 21:13:50 +0200 Subject: [PATCH] csi: xtrestore: add missing break --- csi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csi.c b/csi.c index 9c998cb4..bc9e5f6d 100644 --- a/csi.c +++ b/csi.c @@ -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;