summaryrefslogtreecommitdiffstats
path: root/mdoc.c
diff options
context:
space:
mode:
Diffstat (limited to 'mdoc.c')
-rw-r--r--mdoc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/mdoc.c b/mdoc.c
index 2eaed744..02426194 100644
--- a/mdoc.c
+++ b/mdoc.c
@@ -715,8 +715,10 @@ parsemacro(struct mdoc *m, int ln, char *buf)
while (buf[i] && ' ' == buf[i])
i++;
- /* Begin recursive parse sequence. */
-
+ /*
+ * Begin recursive parse sequence. Since we're at the start of
+ * the line, we don't need to do callable/parseable checks.
+ */
if ( ! mdoc_macro(m, c, ln, 1, &i, buf))
goto err;