=================================================================== RCS file: /cvs/mandoc/man.c,v retrieving revision 1.55 retrieving revision 1.56 diff -u -p -r1.55 -r1.56 --- mandoc/man.c 2010/03/27 10:04:56 1.55 +++ mandoc/man.c 2010/03/27 10:21:38 1.56 @@ -1,4 +1,4 @@ -/* $Id: man.c,v 1.55 2010/03/27 10:04:56 kristaps Exp $ */ +/* $Id: man.c,v 1.56 2010/03/27 10:21:38 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -492,9 +492,13 @@ man_pmacro(struct man *m, int ln, char *buf) i = 1; + /* + * Skip whitespace between the control character and initial + * text. "Whitespace" is both spaces and tabs. + */ if (' ' == buf[i]) { i++; - while (buf[i] && ' ' == buf[i]) + while (buf[i] && (' ' == buf[i] || '\t' == buf[i])) i++; if ('\0' == buf[i]) goto out;