st

fork of suckless's simple terminal
Index Commits Files Refs README LICENSE
commit c7a945c4086ab913cd8a05997bfbc1906645eff4
parent 5afb3862ba368de8888c0c570098baababc7bc19
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Wed, 20 Aug 2014 10:41:41 +0200

Add missed names of charset sequences

Diffstat:
Mst.c | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/st.c b/st.c
@@ -2496,10 +2496,10 @@ eschandle(uchar ascii) {
     case 'k': /* old title set compatibility */
         tstrsequence(ascii);
         return 0;
-    case '(': /* set primary charset G0 */
-    case ')': /* set secondary charset G1 */
-    case '*': /* set tertiary charset G2 */
-    case '+': /* set quaternary charset G3 */
+    case '(': /* GZD4 -- set primary charset G0 */
+    case ')': /* G1D4 -- set secondary charset G1 */
+    case '*': /* G2D4 -- set tertiary charset G2 */
+    case '+': /* G3D4 -- set quaternary charset G3 */
         term.icharset = ascii - '(';
         term.esc |= ESC_ALTCHARSET;
         return 0;