diff options
author | Aurélien Aptel <aurelien.aptel@gmail.com> | 2010-09-03 00:00:41 +0200 |
---|---|---|
committer | Aurélien Aptel <aurelien.aptel@gmail.com> | 2010-09-03 00:00:41 +0200 |
commit | c43526153fbe368351f6139f5e672e1798f6d2f1 (patch) | |
tree | 7a0503deb7351ad8d3ed14caa41e80619ce92585 /st.c | |
parent | 58083da61f53cdcea2112bfe835f8aeebd44850b (diff) | |
download | st-c43526153fbe368351f6139f5e672e1798f6d2f1.tar.gz st-c43526153fbe368351f6139f5e672e1798f6d2f1.tar.bz2 |
cleaning st.info. fixed cvvis.
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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; |