commit 2ea66b92296c62c52d514ef03d16a068fdd20bdf from: pancake@nopcode.org date: Fri Apr 1 07:32:41 2011 UTC apply Nick's patch to fix some error printf to use stderr commit - cabc2bed6887ac11e73e9a8989f28a4598cd38f4 commit + 2ea66b92296c62c52d514ef03d16a068fdd20bdf blob - d528828966a023ed8e6a7bcebb828b085cda3107 blob + 13104267ee790c252195172b02385cb42df6c189 --- st.c +++ st.c @@ -935,7 +935,7 @@ csihandle(void) { switch(escseq.mode) { default: unknown: - printf("erresc: unknown csi "); + fprintf(stderr, "erresc: unknown csi "); csidump(); /* die(""); */ break; @@ -1207,7 +1207,7 @@ tputc(char *c) { term.c.attr.mode &= ~ATTR_GFX; break; default: - printf("esc unhandled charset: ESC ( %c\n", ascii); + fprintf(stderr, "esc unhandled charset: ESC ( %c\n", ascii); } term.esc = 0; } else {