=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/man_html.c,v retrieving revision 1.46 retrieving revision 1.47 diff -u -r1.46 -r1.47 --- src/usr.bin/mandoc/man_html.c 2012/02/26 19:41:27 1.46 +++ src/usr.bin/mandoc/man_html.c 2012/06/02 20:07:09 1.47 @@ -1,4 +1,4 @@ -/* $Id: man_html.c,v 1.46 2012/02/26 19:41:27 schwarze Exp $ */ +/* $Id: man_html.c,v 1.47 2012/06/02 20:07:09 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * @@ -109,6 +109,8 @@ { man_in_pre, NULL }, /* in */ { man_ign_pre, NULL }, /* ft */ { man_OP_pre, NULL }, /* OP */ + { man_literal_pre, NULL }, /* EX */ + { man_literal_pre, NULL }, /* EE */ }; /* @@ -634,7 +636,7 @@ man_literal_pre(MAN_ARGS) { - if (MAN_nf != n->tok) { + if (MAN_fi == n->tok || MAN_EE == n->tok) { print_otag(h, TAG_BR, 0, NULL); mh->fl &= ~MANH_LITERAL; } else