replace fwrite by printf.
This commit is contained in:
parent
cb2e0e9c31
commit
ff5edcfd70
2
st.c
2
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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user