commit 664c40f6bc86163a24b2047a63aaf56db8206d72 from: Aurélien Aptel date: Wed Feb 15 23:59:26 2012 UTC replace fwrite by printf. commit - 6cd5c3dab7e47553bc14a8a7cf76708f708b508e commit + 664c40f6bc86163a24b2047a63aaf56db8206d72 blob - 3b7eb787029f2ce691771a86b1caa40f45ebbd1e blob + baea2bc6f82e979156b8fe37cdc12cd3f6a8edce --- st.c +++ 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);