aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/man_html.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_html.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_html.c')
-rw-r--r--man_html.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/man_html.c b/man_html.c
index 82b01d95..81b78ee4 100644
--- a/man_html.c
+++ b/man_html.c
@@ -1,4 +1,4 @@
-/* $Id: man_html.c,v 1.17 2009/10/30 18:53:08 kristaps Exp $ */
+/* $Id: man_html.c,v 1.18 2009/11/10 12:03:30 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -211,6 +211,9 @@ print_man_node(MAN_ARGS)
default:
if (mans[n->tok].post)
(*mans[n->tok].post)(m, n, h);
+
+ /* Reset metafont upon exit from macro. */
+ h->metafont = 0;
break;
}
}