diff options
Diffstat (limited to 'man.c')
-rw-r--r-- | man.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -496,7 +496,7 @@ man_pmacro(struct man *m, int ln, char *buf) * Skip whitespace between the control character and initial * text. "Whitespace" is both spaces and tabs. */ - if (' ' == buf[i]) { + if (' ' == buf[i] || '\t' == buf[i]) { i++; while (buf[i] && (' ' == buf[i] || '\t' == buf[i])) i++; |