diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2013-06-02 07:52:15 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2013-06-02 07:52:15 +0000 |
commit | 13441e8cb8b0ce68db3204a44bbdc004bee42a0f (patch) | |
tree | ae11f4eb9ef9aa9a7610abf5fdf81eec1a0c1118 /tty-term.c | |
parent | c231381aa3a22340e787baaf78781d9b8ecd6a2c (diff) | |
download | rtmux-13441e8cb8b0ce68db3204a44bbdc004bee42a0f.tar.gz rtmux-13441e8cb8b0ce68db3204a44bbdc004bee42a0f.tar.bz2 rtmux-13441e8cb8b0ce68db3204a44bbdc004bee42a0f.zip |
The actual terminfo entries we ended up with for cursor changes are Cs,
Ce, Ss and Se (not Cc, Ce, Cs, Csr). So use and document these instead
of the ones we were using earlier.
Diffstat (limited to 'tty-term.c')
-rw-r--r-- | tty-term.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -38,15 +38,13 @@ const struct tty_term_code_entry tty_term_codes[NTTYCODE] = { { TTYC_BEL, TTYCODE_STRING, "bel" }, { TTYC_BLINK, TTYCODE_STRING, "blink" }, { TTYC_BOLD, TTYCODE_STRING, "bold" }, - { TTYC_CC, TTYCODE_STRING, "Cc" }, { TTYC_CIVIS, TTYCODE_STRING, "civis" }, { TTYC_CLEAR, TTYCODE_STRING, "clear" }, { TTYC_CNORM, TTYCODE_STRING, "cnorm" }, { TTYC_COLORS, TTYCODE_NUMBER, "colors" }, { TTYC_CR, TTYCODE_STRING, "Cr" }, - { TTYC_CS1, TTYCODE_STRING, "Cs" }, + { TTYC_CS, TTYCODE_STRING, "Cs" }, { TTYC_CSR, TTYCODE_STRING, "csr" }, - { TTYC_CSR1, TTYCODE_STRING, "Csr" }, { TTYC_CUB, TTYCODE_STRING, "cub" }, { TTYC_CUB1, TTYCODE_STRING, "cub1" }, { TTYC_CUD, TTYCODE_STRING, "cud" }, @@ -176,6 +174,7 @@ const struct tty_term_code_entry tty_term_codes[NTTYCODE] = { { TTYC_RMACS, TTYCODE_STRING, "rmacs" }, { TTYC_RMCUP, TTYCODE_STRING, "rmcup" }, { TTYC_RMKX, TTYCODE_STRING, "rmkx" }, + { TTYC_SE, TTYCODE_STRING, "Se" }, { TTYC_SETAB, TTYCODE_STRING, "setab" }, { TTYC_SETAF, TTYCODE_STRING, "setaf" }, { TTYC_SGR0, TTYCODE_STRING, "sgr0" }, @@ -185,6 +184,7 @@ const struct tty_term_code_entry tty_term_codes[NTTYCODE] = { { TTYC_SMKX, TTYCODE_STRING, "smkx" }, { TTYC_SMSO, TTYCODE_STRING, "smso" }, { TTYC_SMUL, TTYCODE_STRING, "smul" }, + { TTYC_SS, TTYCODE_STRING, "Ss" }, { TTYC_TSL, TTYCODE_STRING, "tsl" }, { TTYC_VPA, TTYCODE_STRING, "vpa" }, { TTYC_XENL, TTYCODE_FLAG, "xenl" }, |