summaryrefslogtreecommitdiffstatshomepage
path: root/man.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-03-29 10:10:35 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-03-29 10:10:35 +0000
commitaa85d82aeaa92eb4f5ebff80f69420180ae71322 (patch)
tree0556ae001303938e8dee9b2a7b3a24541b53fe57 /man.c
parent17fb05b577517a04553bc0c0a3301f3113889621 (diff)
downloadmandoc-aa85d82aeaa92eb4f5ebff80f69420180ae71322.tar.gz
mandoc-aa85d82aeaa92eb4f5ebff80f69420180ae71322.tar.zst
mandoc-aa85d82aeaa92eb4f5ebff80f69420180ae71322.zip
Final (?) fix to issue pointed out by Sascha Wildner: roff instructions clobbering prior scope rules and line modes.
Diffstat (limited to 'man.c')
-rw-r--r--man.c23
1 files changed, 14 insertions, 9 deletions
diff --git a/man.c b/man.c
index 1d258836..b1853d1a 100644
--- a/man.c
+++ b/man.c
@@ -1,4 +1,4 @@
-/* $Id: man.c,v 1.58 2010/03/29 04:52:14 kristaps Exp $ */
+/* $Id: man.c,v 1.59 2010/03/29 10:10:35 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -485,9 +485,6 @@ man_pmacro(struct man *m, int ln, char *buf)
/* Comments and empties are quickly ignored. */
- if (MAN_BLINE & m->flags)
- m->flags |= MAN_BPLINE;
-
if ('\0' == buf[1])
return(1);
@@ -555,6 +552,9 @@ man_pmacro(struct man *m, int ln, char *buf)
* Remove prior ELINE macro, as it's being clobbering by a new
* macro. Note that NSCOPED macros do not close out ELINE
* macros---they don't print text---so we let those slip by.
+ * NOTE: we don't allow roff blocks (NOCLOSE) to be embedded
+ * here because that would stipulate blocks as children of
+ * elements!
*/
if ( ! (MAN_NSCOPED & man_macros[tok].flags) &&
@@ -586,10 +586,18 @@ man_pmacro(struct man *m, int ln, char *buf)
m->flags &= ~MAN_ELINE;
}
- /* Begin recursive parse sequence. */
+ /*
+ * Save the fact that we're in the next-line for a block. In
+ * this way, embedded roff instructions can "remember" state
+ * when they exit.
+ */
+
+ if (MAN_BLINE & m->flags)
+ m->flags |= MAN_BPLINE;
- assert(man_macros[tok].fp);
+ /* Call to handler... */
+ assert(man_macros[tok].fp);
if ( ! (*man_macros[tok].fp)(m, tok, ln, ppos, &i, buf))
goto err;
@@ -597,9 +605,6 @@ out:
/*
* We weren't in a block-line scope when entering the
* above-parsed macro, so return.
- *
- * FIXME: this prohibits the nesting of blocks (e.g., `de' and
- * family) within BLINE or ELINE systems. This is annoying.
*/
if ( ! (MAN_BPLINE & m->flags)) {