st
simple terminal
git clone https://9o.is/git/st.git
commit fe799b317ff767beaf9763a66cf3d0e45a5a280a parent eb0eaf7a46c52f7a4b4b4d0e3d37630311a5c054 Author: noname <noname@inventati.org> Date: Fri, 25 Apr 2014 18:27:48 +0400 s/DSC/DCS/ DCS stands for DEVICE CONTROL STRING Diffstat:
| M | st.c | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/st.c b/st.c @@ -149,7 +149,7 @@ enum charset { enum escape_state { ESC_START = 1, ESC_CSI = 2, - ESC_STR = 4, /* DSC, OSC, PM, APC */ + ESC_STR = 4, /* DCS, OSC, PM, APC */ ESC_ALTCHARSET = 8, ESC_STR_END = 16, /* a final string was encountered */ ESC_TEST = 32, /* Enter in test mode */ @@ -2169,7 +2169,7 @@ strhandle(void) { case 'k': /* old title set compatibility */ xsettitle(strescseq.args[0]); return; - case 'P': /* DSC -- Device Control String */ + case 'P': /* DCS -- Device Control String */ case '_': /* APC -- Application Program Command */ case '^': /* PM -- Privacy Message */ return;