aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto E. Vargas Caballero <k0ga@shike2.com>2014-08-20 10:41:41 +0200
committerRoberto E. Vargas Caballero <k0ga@shike2.com>2014-09-23 07:16:58 +0200
commitc7a945c4086ab913cd8a05997bfbc1906645eff4 (patch)
treedf16bd51922612f8481b56e2fa58638f06cb1887
parent5afb3862ba368de8888c0c570098baababc7bc19 (diff)
downloadst-c7a945c4086ab913cd8a05997bfbc1906645eff4.tar.gz
st-c7a945c4086ab913cd8a05997bfbc1906645eff4.zip
Add missed names of charset sequences
-rw-r--r--st.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/st.c b/st.c
index ab3fa6e..83293f4 100644
--- a/st.c
+++ b/st.c
@@ -2496,10 +2496,10 @@ eschandle(uchar ascii) {
2496 case 'k': /* old title set compatibility */ 2496 case 'k': /* old title set compatibility */
2497 tstrsequence(ascii); 2497 tstrsequence(ascii);
2498 return 0; 2498 return 0;
2499 case '(': /* set primary charset G0 */ 2499 case '(': /* GZD4 -- set primary charset G0 */
2500 case ')': /* set secondary charset G1 */ 2500 case ')': /* G1D4 -- set secondary charset G1 */
2501 case '*': /* set tertiary charset G2 */ 2501 case '*': /* G2D4 -- set tertiary charset G2 */
2502 case '+': /* set quaternary charset G3 */ 2502 case '+': /* G3D4 -- set quaternary charset G3 */
2503 term.icharset = ascii - '('; 2503 term.icharset = ascii - '(';
2504 term.esc |= ESC_ALTCHARSET; 2504 term.esc |= ESC_ALTCHARSET;
2505 return 0; 2505 return 0;