summaryrefslogtreecommitdiffstatshomepage
path: root/man_html.c
diff options
context:
space:
mode:
Diffstat (limited to 'man_html.c')
-rw-r--r--man_html.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/man_html.c b/man_html.c
index 81b78ee4..df0527e3 100644
--- a/man_html.c
+++ b/man_html.c
@@ -1,4 +1,4 @@
-/* $Id: man_html.c,v 1.18 2009/11/10 12:03:30 kristaps Exp $ */
+/* $Id: man_html.c,v 1.19 2009/11/14 11:58:36 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -188,7 +188,7 @@ print_man_node(MAN_ARGS)
break;
case (MAN_TEXT):
print_text(h, n->string);
- break;
+ return;
default:
if (mans[n->tok].pre)
child = (*mans[n->tok].pre)(m, n, h);
@@ -211,9 +211,6 @@ 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;
}
}