From: Christoph Lohmann <20h@r-36.net> Date: Tue, 4 Sep 2012 19:56:55 +0000 (+0200) Subject: CUP == HVP; CHA == HPA; X-Git-Tag: 0.3~105 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=870be23e2858178f6f8fced4fcad18a2a0f8ee0f;p=st.git CUP == HVP; CHA == HPA; --- diff --git a/st.c b/st.c index d483d85..11867b7 100644 --- a/st.c +++ b/st.c @@ -1322,12 +1322,12 @@ csihandle(void) { } break; case 'G': /* CHA -- Move to */ - 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 */ - 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);