summaryrefslogtreecommitdiffstats
path: root/tty-term.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2013-01-15 23:18:55 +0000
committerNicholas Marriott <nicm@openbsd.org>2013-01-15 23:18:55 +0000
commit44f8e1caffce2e887682c3314ee22becc09e1d3c (patch)
treea63dd217894d16337ba0880077064fadc5e7077f /tty-term.c
parentbc2e4a36df2023a738c433779ba8f1e08b6951fe (diff)
Implement ECH (erase character, CSI X). Reported by Christian Neukirchen.
Diffstat (limited to 'tty-term.c')
-rw-r--r--tty-term.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tty-term.c b/tty-term.c
index f088d251..c827a444 100644
--- a/tty-term.c
+++ b/tty-term.c
@@ -62,6 +62,7 @@ const struct tty_term_code_entry tty_term_codes[NTTYCODE] = {
{ TTYC_DL, TTYCODE_STRING, "dl" },
{ TTYC_DL1, TTYCODE_STRING, "dl1" },
{ TTYC_E3, TTYCODE_STRING, "E3" },
+ { TTYC_ECH, TTYCODE_STRING, "ech" },
{ TTYC_EL, TTYCODE_STRING, "el" },
{ TTYC_EL1, TTYCODE_STRING, "el1" },
{ TTYC_ENACS, TTYCODE_STRING, "enacs" },