diff options
author | 2015-01-24 02:41:32 +0000 | |
---|---|---|
committer | 2015-01-24 02:41:32 +0000 | |
commit | 32fe3fe6a8933df875ce3824342ba5977215175d (patch) | |
tree | 5fade4980a1176136f11611713620353002ee855 /usr.bin/mandoc/man_html.c | |
parent | Remove a comment that is no longer true with MCLGETI and jumbos on (diff) | |
download | wireguard-openbsd-32fe3fe6a8933df875ce3824342ba5977215175d.tar.xz wireguard-openbsd-32fe3fe6a8933df875ce3824342ba5977215175d.zip |
Strangely, ignoring the roff(7) .na request was implemented in the man(7)
parser. Simplify the code by moving it into the roff(7) parser, also
making it work for mdoc(7).
Diffstat (limited to 'usr.bin/mandoc/man_html.c')
-rw-r--r-- | usr.bin/mandoc/man_html.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/mandoc/man_html.c b/usr.bin/mandoc/man_html.c index 21383c8fec6..df647c50da1 100644 --- a/usr.bin/mandoc/man_html.c +++ b/usr.bin/mandoc/man_html.c @@ -1,4 +1,4 @@ -/* $OpenBSD: man_html.c,v 1.61 2014/12/23 09:31:17 schwarze Exp $ */ +/* $OpenBSD: man_html.c,v 1.62 2015/01/24 02:41:32 schwarze Exp $ */ /* * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2013, 2014 Ingo Schwarze <schwarze@openbsd.org> @@ -98,7 +98,6 @@ static const struct htmlman mans[MAN_MAX] = { { man_I_pre, NULL }, /* I */ { man_alt_pre, NULL }, /* IR */ { man_alt_pre, NULL }, /* RI */ - { man_ign_pre, NULL }, /* na */ { man_br_pre, NULL }, /* sp */ { man_literal_pre, NULL }, /* nf */ { man_literal_pre, NULL }, /* fi */ |