diff options
author | 2010-04-25 16:32:19 +0000 | |
---|---|---|
committer | 2010-04-25 16:32:19 +0000 | |
commit | a2047730238eba36892eb3ef092f982e4d17cf3c (patch) | |
tree | 23ced65c28f9c790cd09f752c6b486ad6c43dcf9 /usr.bin/mandoc/man_html.c | |
parent | dirhash cna cope with real locks (and has before), enable mutexes here. (diff) | |
download | wireguard-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.c | 5 |
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 */ }; |