aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--st.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/st.c b/st.c
index 19e4379..22a1ce6 100644
--- a/st.c
+++ b/st.c
@@ -2497,6 +2497,10 @@ eschandle(uchar ascii) {
2497 case 'k': /* old title set compatibility */ 2497 case 'k': /* old title set compatibility */
2498 tstrsequence(ascii); 2498 tstrsequence(ascii);
2499 return 0; 2499 return 0;
2500 case 'n': /* LS2 -- Locking shift 2 */
2501 case 'o': /* LS3 -- Locking shift 3 */
2502 term.charset = 2 + (ascii - 'n');
2503 break;
2500 case '(': /* GZD4 -- set primary charset G0 */ 2504 case '(': /* GZD4 -- set primary charset G0 */
2501 case ')': /* G1D4 -- set secondary charset G1 */ 2505 case ')': /* G1D4 -- set secondary charset G1 */
2502 case '*': /* G2D4 -- set tertiary charset G2 */ 2506 case '*': /* G2D4 -- set tertiary charset G2 */