summaryrefslogtreecommitdiffstats
path: root/man_macro.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-08-19 12:15:58 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-08-19 12:15:58 +0000
commitda6f2f1ed330b1be7195d62cfa8204018e965cd5 (patch)
tree2536818031c90ce5b1ff826525a4dbaaf762ae84 /man_macro.c
parentadb55018cd205147355db43ed9a49dfc4e6eb123 (diff)
downloadmandoc-da6f2f1ed330b1be7195d62cfa8204018e965cd5.tar.gz
libman checks for open explicit scopes on exit.
Diffstat (limited to 'man_macro.c')
-rw-r--r--man_macro.c16
1 files changed, 13 insertions, 3 deletions
diff --git a/man_macro.c b/man_macro.c
index c96217c5..51566e0a 100644
--- a/man_macro.c
+++ b/man_macro.c
@@ -64,7 +64,7 @@ const struct man_macro __man_macros[MAN_MAX] = {
{ in_line_eoln, 0 }, /* fi */
{ in_line_eoln, 0 }, /* r */
{ blk_close, 0 }, /* RE */
- { blk_imp, 0 }, /* RS */
+ { blk_imp, MAN_EXPLICIT }, /* RS */
};
const struct man_macro * const man_macros = __man_macros;
@@ -312,8 +312,6 @@ in_line_eoln(MACRO_PROT_ARGS)
* make sure that we don't clobber as its sibling.
*/
- /* FIXME: clean this to use man_unscope(). */
-
for ( ; m->last; m->last = m->last->parent) {
if (m->last == n)
break;
@@ -345,6 +343,18 @@ in_line_eoln(MACRO_PROT_ARGS)
int
man_macroend(struct man *m)
{
+ struct man_node *n;
+
+ n = MAN_VALID & m->last->flags ?
+ m->last->parent : m->last;
+
+ for ( ; n; n = n->parent) {
+ if (MAN_BLOCK != n->type)
+ continue;
+ if ( ! (MAN_EXPLICIT & man_macros[n->tok].flags))
+ continue;
+ return(man_nerr(m, n, WEXITSCOPE));
+ }
return(man_unscope(m, m->first));
}