all repos — st @ ff5edcfd7055102c46098f18adf1b469eec7caef

st (suckless terminal) config

replace fwrite by printf.
Aurélien Aptel aurelien.aptel@gmail.com
commit

ff5edcfd7055102c46098f18adf1b469eec7caef

parent

cb2e0e9c31a510cd6cdbbd3b0da231157a975d95

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M st.cst.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);