summaryrefslogtreecommitdiffstatshomepage
path: root/man_term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-11-10 12:03:29 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-11-10 12:03:29 +0000
commit02b3298e7df190d17c1e5726e60fa2735a609206 (patch)
tree02dcdba838273dcb7d46c00f4e004b0cdc2c6b4f /man_term.c
parent2ab52c64b986eeab0f0c567f016ec05fe00ef26a (diff)
downloadmandoc-02b3298e7df190d17c1e5726e60fa2735a609206.tar.gz
mandoc-02b3298e7df190d17c1e5726e60fa2735a609206.tar.zst
mandoc-02b3298e7df190d17c1e5726e60fa2735a609206.zip
Noted that -man text decoration is re-set when exiting a macro invocation.
Diffstat (limited to 'man_term.c')
-rw-r--r--man_term.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/man_term.c b/man_term.c
index c7537ab7..20080694 100644
--- a/man_term.c
+++ b/man_term.c
@@ -1,4 +1,4 @@
-/* $Id: man_term.c,v 1.50 2009/11/10 11:45:57 kristaps Exp $ */
+/* $Id: man_term.c,v 1.51 2009/11/10 12:03:30 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -876,9 +876,13 @@ print_man_node(DECL_ARGS)
if (c && n->child)
print_man_body(p, mt, n->child, m);
- if (MAN_TEXT != n->type)
+ if (MAN_TEXT != n->type) {
if (termacts[n->tok].post)
(*termacts[n->tok].post)(p, mt, n, m);
+
+ /* Reset metafont upon exit from macro. */
+ p->metafont = 0;
+ }
}