From b7321ad35a6dbbfd5b61781b7cd128a4ad6e4cae Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sat, 14 Nov 2009 11:58:36 +0000 Subject: Fixed \c handling in -Thtml. --- man_html.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'man_html.c') 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 * @@ -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; } } -- cgit v1.2.3