summaryrefslogtreecommitdiffstatshomepage
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
commite57c06cc3631ebb1c40bd2234537697ba2742305 (patch)
tree3637be33f32f090ae8a942e254c877e238b1c0a8 /man_macro.c
parent24ee17200231fd7ea9bf63208b7da1c1d6aa9228 (diff)
downloadmandoc-e57c06cc3631ebb1c40bd2234537697ba2742305.tar.gz
mandoc-e57c06cc3631ebb1c40bd2234537697ba2742305.tar.zst
mandoc-e57c06cc3631ebb1c40bd2234537697ba2742305.zip
libman checks for open explicit scopes on exit.
Diffstat (limited to 'man_macro.c')
-rw-r--r--man_macro.c18
1 files changed, 14 insertions, 4 deletions
diff --git a/man_macro.c b/man_macro.c
index ba06f761..de2c5ea4 100644
--- a/man_macro.c
+++ b/man_macro.c
@@ -1,4 +1,4 @@
-/* $Id: man_macro.c,v 1.21 2009/08/19 09:14:50 kristaps Exp $ */
+/* $Id: man_macro.c,v 1.22 2009/08/19 12:15:58 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -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));
}