diff options
author | 2010-12-19 07:53:12 +0000 | |
---|---|---|
committer | 2010-12-19 07:53:12 +0000 | |
commit | 6c18168e881c62811d10cb3ff4870d7b6943521a (patch) | |
tree | 3ae4c058f5827e55f47327a2d3db42810cdb0953 /usr.bin/mandoc/man_html.c | |
parent | rsu(4) supports the Sweex LW154 (diff) | |
download | wireguard-openbsd-6c18168e881c62811d10cb3ff4870d7b6943521a.tar.xz wireguard-openbsd-6c18168e881c62811d10cb3ff4870d7b6943521a.zip |
Remove `i' and `r' macro handlers. These macros, originally part of the
me package, aren't recognised by "groff -mandoc" so we don't need to do
so either. Besides, they are not used in base or Xenocara, and only at
two or three places in one single port, which are probably typos.
From kristaps@.
Diffstat (limited to 'usr.bin/mandoc/man_html.c')
-rw-r--r-- | usr.bin/mandoc/man_html.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/mandoc/man_html.c b/usr.bin/mandoc/man_html.c index 6df5b206064..5c3c07d4418 100644 --- a/usr.bin/mandoc/man_html.c +++ b/usr.bin/mandoc/man_html.c @@ -1,4 +1,4 @@ -/* $Id: man_html.c,v 1.23 2010/12/07 00:06:24 schwarze Exp $ */ +/* $Id: man_html.c,v 1.24 2010/12/19 07:53:12 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -98,11 +98,9 @@ static const struct htmlman mans[MAN_MAX] = { { man_alt_pre, NULL }, /* IR */ { man_alt_pre, NULL }, /* RI */ { NULL, NULL }, /* na */ - { NULL, NULL }, /* i */ { man_br_pre, NULL }, /* sp */ { man_literal_pre, NULL }, /* nf */ { man_literal_pre, NULL }, /* fi */ - { NULL, NULL }, /* r */ { NULL, NULL }, /* RE */ { man_RS_pre, NULL }, /* RS */ { man_ign_pre, NULL }, /* DT */ |