diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2011-04-24 23:51:17 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2011-04-24 23:51:17 +0000 |
commit | 62a48c322e3776d78c00f91cddca122e733deaee (patch) | |
tree | f14c41a55d666172e08145742e9632e98a22f053 | |
parent | 71b287790603192a71257e3948f9d2503dda9cc9 (diff) | |
download | mandoc-62a48c322e3776d78c00f91cddca122e733deaee.tar.gz |
User defined macros may invoke high-level macros.
The latter got lost due to a regression in rev. 1.130.
ok kristaps@
-rw-r--r-- | roff.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -829,8 +829,7 @@ roff_block_sub(ROFF_ARGS) * pulling it out of the hashtable. */ - if (ROFF_MAX == (t = roff_parse(r, *bufp, &pos))) - return(ROFF_IGN); + t = roff_parse(r, *bufp, &pos); /* * Macros other than block-end are only significant |