cleaning st.info. fixed cvvis.

This commit is contained in:
Aurélien Aptel
2010-09-03 00:00:41 +02:00
parent 58083da61f
commit c43526153f
2 changed files with 16 additions and 3 deletions

4
st.c
View File

@ -855,7 +855,9 @@ csihandle(void) {
term.mode |= MODE_WRAP;
break;
case 12: /* att610 -- Start blinking cursor (IGNORED) */
break;
/* fallthrough for xterm cvvis = CSI [ ? 12 ; 25 h */
if(escseq.narg > 1 && escseq.arg[1] != 25)
break;
case 25:
term.c.state &= ~CURSOR_HIDE;
break;