Add 8 bit version of HTS

HTS version for 7 bits environments already was implemented in st.
This patch adds the 8 bit version of it.
This commit is contained in:
Roberto E. Vargas Caballero 2014-06-20 09:51:18 +02:00
parent f5356d0185
commit da78629cf5
1 changed files with 3 additions and 1 deletions

4
st.c
View File

@ -2405,7 +2405,9 @@ tcontrolcode(uchar ascii) {
case 0x85: /* NEL -- Next line */
tnewline(1); /* always go to first col */
break;
case 0x88: /* TODO: HTS */
case 0x88: /* HTS -- Horizontal tab stop */
term.tabs[term.c.x] = 1;
break;
case 0x8d: /* TODO: RI */
case 0x8e: /* TODO: SS2 */
case 0x8f: /* TODO: SS3 */