aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--st.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/st.c b/st.c
index 1162700..6ec4858 100644
--- a/st.c
+++ b/st.c
@@ -2405,7 +2405,9 @@ tcontrolcode(uchar ascii) {
2405 case 0x85: /* NEL -- Next line */ 2405 case 0x85: /* NEL -- Next line */
2406 tnewline(1); /* always go to first col */ 2406 tnewline(1); /* always go to first col */
2407 break; 2407 break;
2408 case 0x88: /* TODO: HTS */ 2408 case 0x88: /* HTS -- Horizontal tab stop */
2409 term.tabs[term.c.x] = 1;
2410 break;
2409 case 0x8d: /* TODO: RI */ 2411 case 0x8d: /* TODO: RI */
2410 case 0x8e: /* TODO: SS2 */ 2412 case 0x8e: /* TODO: SS2 */
2411 case 0x8f: /* TODO: SS3 */ 2413 case 0x8f: /* TODO: SS3 */