st

simple terminal

git clone https://9o.is/git/st.git

commit 59df6cec143ac82b5aed29d094b204c2e3401316
parent e061aa927e6643bb6b6a3d0270b0db7b3200f1f5
Author: noname <noname@inventati.org>
Date:   Sun, 27 Apr 2014 15:40:01 +0400

Remove unused dump() function.

Diffstat:
Mst.c | 10----------
1 file changed, 0 insertions(+), 10 deletions(-)

diff --git a/st.c b/st.c @@ -399,7 +399,6 @@ static int32_t tdefcolor(int *, int *, int); static void tselcs(void); static void tdeftran(char); static inline bool match(uint, uint); -static void dump(char c); static void ttynew(void); static void ttyread(void); static void ttyresize(void); @@ -1243,15 +1242,6 @@ ttynew(void) { } void -dump(char c) { - static int col; - - fprintf(stderr, " %02x '%c' ", c, isprint(c)?c:'.'); - if(++col % 10 == 0) - fprintf(stderr, "\n"); -} - -void ttyread(void) { static char buf[BUFSIZ]; static int buflen = 0;