You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/x11-terms/kterm/files/kterm-underline.patch

23 lines
467 B

--- a/charproc.c
+++ b/charproc.c
@@ -1897,6 +1897,19 @@
case 7:
term->flags |= INVERSE;
break;
+ case 22: /* Reset bold. */
+ /* ECMA-ly incorrect */
+ term->flags &= ~BOLD;
+ break;
+ case 24:
+ term->flags &= ~UNDERLINE;
+ break;
+ case 25: /* Blink, really. */
+ term->flags &= ~BOLD;
+ break;
+ case 27:
+ term->flags &= ~INVERSE;
+ break;
#ifdef KTERM_COLOR
case 30:
case 31: