summaryrefslogtreecommitdiffstatshomepage
path: root/mdoc.c
diff options
context:
space:
mode:
Diffstat (limited to 'mdoc.c')
-rw-r--r--mdoc.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/mdoc.c b/mdoc.c
index 3cea98cf..6bcea3a8 100644
--- a/mdoc.c
+++ b/mdoc.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc.c,v 1.97 2009/07/29 08:46:06 kristaps Exp $ */
+/* $Id: mdoc.c,v 1.98 2009/07/29 08:52:24 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -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;