diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2010-04-25 16:32:20 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2010-04-25 16:32:20 +0000 |
commit | 5e7b141c4078dd8c459a211917f8a3e69aeaa18a (patch) | |
tree | b859e18c87182d4c4303d5b692186229b169426b /usr.bin/mandoc/man_html.c | |
parent | 29b368d88c35b353b92244355941b92cf8a46c4e (diff) |
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 */ }; |