st.c | 2 +- diff --git a/st.c b/st.c index 3b7eb787029f2ce691771a86b1caa40f45ebbd1e..baea2bc6f82e979156b8fe37cdc12cd3f6a8edce 100644 --- a/st.c +++ b/st.c @@ -1388,7 +1388,7 @@ 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);