summaryrefslogtreecommitdiffstats
path: root/usr.bin/mandoc/man_html.c
diff options
context:
space:
mode:
authorschwarze <schwarze@openbsd.org>2010-04-25 16:32:19 +0000
committerschwarze <schwarze@openbsd.org>2010-04-25 16:32:19 +0000
commita2047730238eba36892eb3ef092f982e4d17cf3c (patch)
tree23ced65c28f9c790cd09f752c6b486ad6c43dcf9 /usr.bin/mandoc/man_html.c
parentdirhash cna cope with real locks (and has before), enable mutexes here. (diff)
downloadwireguard-openbsd-a2047730238eba36892eb3ef092f982e4d17cf3c.tar.xz
wireguard-openbsd-a2047730238eba36892eb3ef092f982e4d17cf3c.zip
Implement roff conditional instructions .if .ie .el, in man(7) only for now;
fixing OpenBSD::PackageName(3p) and friends for espie@.
Diffstat (limited to 'usr.bin/mandoc/man_html.c')
-rw-r--r--usr.bin/mandoc/man_html.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/mandoc/man_html.c b/usr.bin/mandoc/man_html.c
index 339bbf967e4..b17d6be2833 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.8 2010/03/26 01:22:05 schwarze Exp $ */
+/* $Id: man_html.c,v 1.9 2010/04/25 16:32:19 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -108,6 +108,9 @@ static const struct htmlman mans[MAN_MAX] = {
{ man_ign_pre, NULL }, /* ami */
{ man_ign_pre, NULL }, /* ig */
{ NULL, NULL }, /* . */
+ { NULL, NULL }, /* if */
+ { NULL, NULL }, /* ie */
+ { NULL, NULL }, /* el */
};