From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from krisdoz.my.domain (kristaps@localhost [127.0.0.1]) by krisdoz.my.domain (8.14.3/8.14.3) with ESMTP id oB6E717R022577 for ; Mon, 6 Dec 2010 09:07:01 -0500 (EST) Received: (from kristaps@localhost) by krisdoz.my.domain (8.14.3/8.14.3/Submit) id oB6E71qJ006550; Mon, 6 Dec 2010 09:07:01 -0500 (EST) Date: Mon, 6 Dec 2010 09:07:01 -0500 (EST) Message-Id: <201012061407.oB6E71qJ006550@krisdoz.my.domain> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: kristaps@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: Let some man_term.c cleanups bleed into man_html.c. X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- Let some man_term.c cleanups bleed into man_html.c. Modified Files: -------------- mdocml: man_html.c Revision Data ------------- Index: man_html.c =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/man_html.c,v retrieving revision 1.47 retrieving revision 1.48 diff -Lman_html.c -Lman_html.c -u -p -r1.47 -r1.48 --- man_html.c +++ man_html.c @@ -733,15 +733,11 @@ static int man_literal_pre(MAN_ARGS) { - switch (n->tok) { - case (MAN_nf): + if (MAN_nf == n->tok) { print_otag(h, TAG_BR, 0, NULL); mh->fl |= MANH_LITERAL; - break; - default: + } else mh->fl &= ~MANH_LITERAL; - break; - } return(1); } -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv