aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto E. Vargas Caballero <k0ga@shike2.com>2014-06-20 09:51:18 +0200
committerRoberto E. Vargas Caballero <k0ga@shike2.com>2014-07-08 23:28:10 +0200
commitbcbaf5d9beb72f29d228d103634d648ca28fb48d (patch)
tree5617e0812315bb7da2efd217858ec0ef7c690724
parentf796533b1bab9aa8ea4e70b79d305c9aea47fe6a (diff)
downloadst-bcbaf5d9beb72f29d228d103634d648ca28fb48d.tar.gz
st-bcbaf5d9beb72f29d228d103634d648ca28fb48d.zip
Add 8 bit version of DECID
DECID version for 7 bits environments already was implemented in st. This patch adds the 8 bit version of it.
-rw-r--r--st.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/st.c b/st.c
index 69ec122..77ae26e 100644
--- a/st.c
+++ b/st.c
@@ -2408,7 +2408,10 @@ tcontrolcode(uchar ascii) {
2408 case 0x8f: /* TODO: SS3 */ 2408 case 0x8f: /* TODO: SS3 */
2409 case 0x90: /* TODO: DCS */ 2409 case 0x90: /* TODO: DCS */
2410 case 0x98: /* TODO: SOS */ 2410 case 0x98: /* TODO: SOS */
2411 case 0x9a: /* TODO: DECID */ 2411 break;
2412 case 0x9a: /* DECID -- Identify Terminal */
2413 ttywrite(VT102ID, sizeof(VT102ID) - 1);
2414 break;
2412 case 0x9b: /* TODO: CSI */ 2415 case 0x9b: /* TODO: CSI */
2413 case 0x9c: /* TODO: ST */ 2416 case 0x9c: /* TODO: ST */
2414 case 0x9d: /* TODO: OSC */ 2417 case 0x9d: /* TODO: OSC */