Browse Source

CUP == HVP; CHA == HPA;

master
Christoph Lohmann 12 years ago
parent
commit
6e88c7f602
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      st.c

+ 2
- 2
st.c View File

@ -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);


Loading…
Cancel
Save