diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-07-29 08:52:24 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-07-29 08:52:24 +0000 |
commit | 314cb83697cccba66984aa05a8ccf9ba7137a98c (patch) | |
tree | 91eea3002b0534c2e5f38867d27fcfbd9279b780 /mdoc.c | |
parent | 0d0ada758ebf9fec3e99dcb0466210b188b27fb9 (diff) | |
download | mandoc-314cb83697cccba66984aa05a8ccf9ba7137a98c.tar.gz |
Columns with `Bl -column' correctly check for CALLABLE status.
Diffstat (limited to 'mdoc.c')
-rw-r--r-- | mdoc.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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; |