X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=st.c;h=baea2bc6f82e979156b8fe37cdc12cd3f6a8edce;hb=970d44a60db7b64279e1c14d8750253580feecaa;hp=3b7eb787029f2ce691771a86b1caa40f45ebbd1e;hpb=cb2e0e9c31a510cd6cdbbd3b0da231157a975d95;p=st.git diff --git a/st.c b/st.c index 3b7eb78..baea2bc 100644 --- a/st.c +++ b/st.c @@ -1388,7 +1388,7 @@ csihandle(void) { void csidump(void) { int i; - fwrite("ESC[", 1, 4, stdout); + printf("ESC["); for(i = 0; i < escseq.len; i++) { uint c = escseq.buf[i] & 0xff; if(isprint(c)) putchar(c);