aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--st.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/st.c b/st.c
index d483d85..11867b7 100644
--- a/st.c
+++ b/st.c
@@ -1322,12 +1322,12 @@ csihandle(void) {
1322 } 1322 }
1323 break; 1323 break;
1324 case 'G': /* CHA -- Move to <col> */ 1324 case 'G': /* CHA -- Move to <col> */
1325 case '`': /* XXX: HPA -- same? */ 1325 case '`': /* HPA */
1326 DEFAULT(csiescseq.arg[0], 1); 1326 DEFAULT(csiescseq.arg[0], 1);
1327 tmoveto(csiescseq.arg[0]-1, term.c.y); 1327 tmoveto(csiescseq.arg[0]-1, term.c.y);
1328 break; 1328 break;
1329 case 'H': /* CUP -- Move to <row> <col> */ 1329 case 'H': /* CUP -- Move to <row> <col> */
1330 case 'f': /* XXX: HVP -- same? */ 1330 case 'f': /* HVP */
1331 DEFAULT(csiescseq.arg[0], 1); 1331 DEFAULT(csiescseq.arg[0], 1);
1332 DEFAULT(csiescseq.arg[1], 1); 1332 DEFAULT(csiescseq.arg[1], 1);
1333 tmoveto(csiescseq.arg[1]-1, csiescseq.arg[0]-1); 1333 tmoveto(csiescseq.arg[1]-1, csiescseq.arg[0]-1);