aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--st.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/st.c b/st.c
index fe44608..baab589 100644
--- a/st.c
+++ b/st.c
@@ -2446,7 +2446,7 @@ tputc(char *c, int len) {
2446 (ascii == '\a' || ascii == 030 || 2446 (ascii == '\a' || ascii == 030 ||
2447 ascii == 032 || ascii == 033 || 2447 ascii == 032 || ascii == 033 ||
2448 ISCONTROLC1(unicodep))) { 2448 ISCONTROLC1(unicodep))) {
2449 term.esc &= ~ESC_STR; 2449 term.esc &= ~(ESC_START|ESC_STR);
2450 term.esc |= ESC_STR_END; 2450 term.esc |= ESC_STR_END;
2451 } else if(strescseq.len + len < sizeof(strescseq.buf) - 1) { 2451 } else if(strescseq.len + len < sizeof(strescseq.buf) - 1) {
2452 memmove(&strescseq.buf[strescseq.len], c, len); 2452 memmove(&strescseq.buf[strescseq.len], c, len);