aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--st.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/st.c b/st.c
index dcb80ca..c67619d 100644
--- a/st.c
+++ b/st.c
@@ -2504,7 +2504,6 @@ tstrsequence(uchar c) {
2504 strreset(); 2504 strreset();
2505 strescseq.type = c; 2505 strescseq.type = c;
2506 term.esc |= ESC_STR; 2506 term.esc |= ESC_STR;
2507 return;
2508} 2507}
2509 2508
2510void 2509void
@@ -2586,7 +2585,6 @@ tcontrolcode(uchar ascii) {
2586 } 2585 }
2587 /* only CAN, SUB, \a and C1 chars interrupt a sequence */ 2586 /* only CAN, SUB, \a and C1 chars interrupt a sequence */
2588 term.esc &= ~(ESC_STR_END|ESC_STR); 2587 term.esc &= ~(ESC_STR_END|ESC_STR);
2589 return;
2590} 2588}
2591 2589
2592/* 2590/*