Add SUB and CAN control codes

These control codes reset any escape sequence already initialised.
---
 st.c |    7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)
This commit is contained in:
Roberto E. Vargas Caballero 2012-10-06 19:13:08 +02:00
parent ac8f05c45a
commit fbfa1f83eb
1 changed files with 5 additions and 2 deletions

7
st.c
View File

@ -1816,8 +1816,11 @@ tputc(char *c, int len) {
return;
case '\016': /* XXX: SO */
case '\017': /* XXX: SI */
case '\032': /* XXX: SUB */
case '\030': /* XXX: CAN */
break;
case '\032': /* SUB */
case '\030': /* CAN */
csireset();
return;
default:
/* case '\005': ENQ (IGNORED) */
/* case '\000': NUL (IGNORED) */