mscan: don't bother with tabs

pull/1/merge
Christian Neukirchen 8 years ago
parent bba611ec3f
commit e709f6f588

@ -21,6 +21,8 @@ void
u8putstr(FILE *out, char *s, size_t l, int pad)
{
while (*s && l) {
if (*s == '\t')
*s = ' ';
if (*s >= 32 && *s < 127) {
putc(*s, out);
s++;

Loading…
Cancel
Save