Standout mode has changed. Thanks p37sitdu@lavabit.com!

This commit is contained in:
Christoph Lohmann 2013-01-08 20:36:49 +01:00
parent b3326ab63b
commit 1827e0643f
1 changed files with 2 additions and 2 deletions

4
st.c
View File

@ -1390,7 +1390,7 @@ tsetattr(int *attr, int l) {
case 1:
term.c.attr.mode |= ATTR_BOLD;
break;
case 3: /* enter standout (highlight) */
case 3:
term.c.attr.mode |= ATTR_ITALIC;
break;
case 4:
@ -1406,7 +1406,7 @@ tsetattr(int *attr, int l) {
case 22:
term.c.attr.mode &= ~ATTR_BOLD;
break;
case 23: /* leave standout (highlight) mode */
case 23:
term.c.attr.mode &= ~ATTR_ITALIC;
break;
case 24: