aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--st.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/st.c b/st.c
index a992005..213541f 100644
--- a/st.c
+++ b/st.c
@@ -1390,7 +1390,7 @@ tsetattr(int *attr, int l) {
1390 case 1: 1390 case 1:
1391 term.c.attr.mode |= ATTR_BOLD; 1391 term.c.attr.mode |= ATTR_BOLD;
1392 break; 1392 break;
1393 case 3: /* enter standout (highlight) */ 1393 case 3:
1394 term.c.attr.mode |= ATTR_ITALIC; 1394 term.c.attr.mode |= ATTR_ITALIC;
1395 break; 1395 break;
1396 case 4: 1396 case 4:
@@ -1406,7 +1406,7 @@ tsetattr(int *attr, int l) {
1406 case 22: 1406 case 22:
1407 term.c.attr.mode &= ~ATTR_BOLD; 1407 term.c.attr.mode &= ~ATTR_BOLD;
1408 break; 1408 break;
1409 case 23: /* leave standout (highlight) mode */ 1409 case 23:
1410 term.c.attr.mode &= ~ATTR_ITALIC; 1410 term.c.attr.mode &= ~ATTR_ITALIC;
1411 break; 1411 break;
1412 case 24: 1412 case 24: