CUP == HVP; CHA == HPA;
authorChristoph Lohmann <20h@r-36.net>
Tue, 4 Sep 2012 19:56:55 +0000 (21:56 +0200)
committerChristoph Lohmann <20h@r-36.net>
Tue, 4 Sep 2012 19:56:55 +0000 (21:56 +0200)
st.c

diff --git a/st.c b/st.c
index d483d850766760c70ac3f5e5d3dd486be7d1c1c4..11867b733f3b55e2d38f5c942e0f1905b9ef1581 100644 (file)
--- a/st.c
+++ b/st.c
@@ -1322,12 +1322,12 @@ csihandle(void) {
                }
                break;
        case 'G': /* CHA -- Move to <col> */
-       case '`': /* XXX: HPA -- same? */
+       case '`': /* HPA */
                DEFAULT(csiescseq.arg[0], 1);
                tmoveto(csiescseq.arg[0]-1, term.c.y);
                break;
        case 'H': /* CUP -- Move to <row> <col> */
-       case 'f': /* XXX: HVP -- same? */
+       case 'f': /* HVP */
                DEFAULT(csiescseq.arg[0], 1);
                DEFAULT(csiescseq.arg[1], 1);
                tmoveto(csiescseq.arg[1]-1, csiescseq.arg[0]-1);