aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authorAurélien Aptel <aurelien.aptel@gmail.com>2010-09-03 00:00:41 +0200
committerAurélien Aptel <aurelien.aptel@gmail.com>2010-09-03 00:00:41 +0200
commit6380a73364de3c3602b5f87d4522a1e4d826fcb6 (patch)
tree7a0503deb7351ad8d3ed14caa41e80619ce92585 /st.c
parenta997fea2c0644167d20a6cb9181180fc8b617cca (diff)
downloadst-6380a73364de3c3602b5f87d4522a1e4d826fcb6.tar.gz
st-6380a73364de3c3602b5f87d4522a1e4d826fcb6.tar.bz2
cleaning st.info. fixed cvvis.
Diffstat (limited to 'st.c')
-rw-r--r--st.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/st.c b/st.c
index 9e66d09..ab43a43 100644
--- a/st.c
+++ b/st.c
@@ -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;