aboutsummaryrefslogtreecommitdiff
path: root/tty-term.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2011-05-22 16:26:09 +0000
committerTiago Cunha <tcunha@gmx.com>2011-05-22 16:26:09 +0000
commitb2f301f4e2b05764cd80da2ebc08e10605d0eeca (patch)
tree7f120658df8bbeab3acdffbed47915a4a4f47587 /tty-term.c
parent719755574d4c4a5af1b255cb709c9ce8ee62f7ac (diff)
downloadrtmux-b2f301f4e2b05764cd80da2ebc08e10605d0eeca.tar.gz
rtmux-b2f301f4e2b05764cd80da2ebc08e10605d0eeca.tar.bz2
rtmux-b2f301f4e2b05764cd80da2ebc08e10605d0eeca.zip
Sync OpenBSD patchset 916:
Support DECSCUSR sequence to set the cursor style with two new terminfo(5) extensions, Cs and Csr. Written by Ailin Nemui.
Diffstat (limited to 'tty-term.c')
-rw-r--r--tty-term.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tty-term.c b/tty-term.c
index 0d594076..7ee3fac9 100644
--- a/tty-term.c
+++ b/tty-term.c
@@ -1,4 +1,4 @@
-/* $Id: tty-term.c,v 1.50 2011-05-22 16:25:02 tcunha Exp $ */
+/* $Id: tty-term.c,v 1.51 2011-05-22 16:26:09 tcunha Exp $ */
/*
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -47,7 +47,9 @@ const struct tty_term_code_entry tty_term_codes[NTTYCODE] = {
{ TTYC_CNORM, TTYCODE_STRING, "cnorm" },
{ TTYC_COLORS, TTYCODE_NUMBER, "colors" },
{ TTYC_CR, TTYCODE_STRING, "Cr" },
+ { TTYC_CS1, 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" },