all repos — st @ 6681af165b06c32cf65bf970a295600d46cb7025

st (suckless terminal) config

Remove unused dump() function.
noname noname@inventati.org
commit

6681af165b06c32cf65bf970a295600d46cb7025

parent

1ae2745fd160bbc25bab56be31d04a9d7f8ef4d4

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

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

@@ -1240,15 +1239,6 @@ }

} break; } -} - -void -dump(char c) { - static int col; - - fprintf(stderr, " %02x '%c' ", c, isprint(c)?c:'.'); - if(++col % 10 == 0) - fprintf(stderr, "\n"); } void