aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2021-12-26 19:00:41 +0100
committersinanmohd <pcmsinan@gmail.com>2023-01-12 08:21:56 +0530
commit03ba5a1053b39352ae4620b28f7ef031a6368966 (patch)
tree7f02cd167faf847f4ac3ef8f4fd71487547d7d99 /st.c
parentbb45edc83d12396ff754d4687904c65bf93ec3f0 (diff)
follow-up fix for OSC color sequences, return
Otherwise the message "erresc: unknown str" is printed.
Diffstat (limited to 'st.c')
-rw-r--r--st.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/st.c b/st.c
index 3346543..58b7c60 100644
--- a/st.c
+++ b/st.c
@@ -1990,7 +1990,7 @@ strhandle(void)
fprintf(stderr, "erresc: invalid foreground color: %s\n", p);
else
redraw();
- break;
+ return;
case 11:
if (narg < 2)
break;
@@ -2003,7 +2003,7 @@ strhandle(void)
fprintf(stderr, "erresc: invalid background color: %s\n", p);
else
redraw();
- break;
+ return;
case 12:
if (narg < 2)
break;
@@ -2016,7 +2016,7 @@ strhandle(void)
fprintf(stderr, "erresc: invalid cursor color: %s\n", p);
else
redraw();
- break;
+ return;
case 4: /* color set */
if (narg < 3)
break;