X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=st.c;h=ab43a43b88db487ef0bb85cec68eadc778726c84;hb=c43526153fbe368351f6139f5e672e1798f6d2f1;hp=9e66d09bf3e94ffd4dc783a6dd7f4ad5187301db;hpb=58083da61f53cdcea2112bfe835f8aeebd44850b;p=st.git 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;