summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-03-27 10:21:38 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-03-27 10:21:38 +0000
commitb86b856fc5c5e1242349cefc1691b33efea97669 (patch)
tree4e58486a33d8153b247ae8946153b1edc9a68a05
parentb9e783618510e16c5a5f3b9826921a53b7a7980e (diff)
downloadmandoc-b86b856fc5c5e1242349cefc1691b33efea97669.tar.gz
mandoc-b86b856fc5c5e1242349cefc1691b33efea97669.tar.zst
mandoc-b86b856fc5c5e1242349cefc1691b33efea97669.zip
*** empty log message ***
-rw-r--r--man.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/man.c b/man.c
index 9dceb790..edcd44ba 100644
--- a/man.c
+++ b/man.c
@@ -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 <kristaps@kth.se>
*
@@ -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;