diff options
author | nicm <nicm> | 2017-03-22 07:16:54 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-03-22 07:16:54 +0000 |
commit | df3ab87964fc52c6f44b2bbe014c8bec202d0528 (patch) | |
tree | 18acb5eb18fa51e177d47eb5e0e828e0322a69ee /tty-term.c | |
parent | 04e17a7e110bb0c70bc917b340aedd94fa60891f (diff) | |
download | rtmux-df3ab87964fc52c6f44b2bbe014c8bec202d0528.tar.gz rtmux-df3ab87964fc52c6f44b2bbe014c8bec202d0528.tar.bz2 rtmux-df3ab87964fc52c6f44b2bbe014c8bec202d0528.zip |
Add support for the strikethrough attribute (SGR 9), using the new smxx
terminfo capability. This means there are now nine attribute bits, so
anything above 0xff uses an extended cell.
Diffstat (limited to 'tty-term.c')
-rw-r--r-- | tty-term.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -249,6 +249,7 @@ static const struct tty_term_code_entry tty_term_codes[] = { [TTYC_SMKX] = { TTYCODE_STRING, "smkx" }, [TTYC_SMSO] = { TTYCODE_STRING, "smso" }, [TTYC_SMUL] = { TTYCODE_STRING, "smul" }, + [TTYC_SMXX] = { TTYCODE_STRING, "smxx" }, [TTYC_SS] = { TTYCODE_STRING, "Ss" }, [TTYC_TC] = { TTYCODE_FLAG, "Tc" }, [TTYC_TSL] = { TTYCODE_STRING, "tsl" }, |