Add 8 bit version of NEL

NEL 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 bcbaf5d9be
commit f5356d0185
1 changed files with 4 additions and 1 deletions

5
st.c
View File

@ -2401,7 +2401,10 @@ tcontrolcode(uchar ascii) {
case 0177: /* DEL (IGNORED) */
return;
case 0x84: /* TODO: IND */
case 0x85: /* TODO: NEL */
break;
case 0x85: /* NEL -- Next line */
tnewline(1); /* always go to first col */
break;
case 0x88: /* TODO: HTS */
case 0x8d: /* TODO: RI */
case 0x8e: /* TODO: SS2 */