diff options
author | Christoph Lohmann <20h@r-36.net> | 2012-09-04 21:56:55 +0200 |
---|---|---|
committer | Christoph Lohmann <20h@r-36.net> | 2012-09-04 21:56:55 +0200 |
commit | 870be23e2858178f6f8fced4fcad18a2a0f8ee0f (patch) | |
tree | bc8d6efe240fd0df874557843f08b73a6db15242 | |
parent | 1f7896ae9c977ea3d8928a03df7d95f4ba4d93f4 (diff) | |
download | st-870be23e2858178f6f8fced4fcad18a2a0f8ee0f.tar.gz st-870be23e2858178f6f8fced4fcad18a2a0f8ee0f.tar.bz2 |
CUP == HVP; CHA == HPA;
-rw-r--r-- | st.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |