summaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_term.c
diff options
context:
space:
mode:
Diffstat (limited to 'mdoc_term.c')
-rw-r--r--mdoc_term.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/mdoc_term.c b/mdoc_term.c
index a6f9c80b..25ad7fea 100644
--- a/mdoc_term.c
+++ b/mdoc_term.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_term.c,v 1.217 2011/02/06 22:33:38 schwarze Exp $ */
+/* $Id: mdoc_term.c,v 1.218 2011/02/06 23:02:31 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
@@ -1713,6 +1713,7 @@ static int
termp_xx_pre(DECL_ARGS)
{
const char *pp;
+ int flags;
pp = NULL;
switch (n->tok) {
@@ -1740,9 +1741,10 @@ termp_xx_pre(DECL_ARGS)
term_word(p, pp);
if (n->child) {
+ flags = p->flags;
p->flags |= TERMP_KEEP;
term_word(p, n->child->string);
- p->flags &= ~TERMP_KEEP;
+ p->flags = flags;
}
return(0);
}