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_validate.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_validate.c')
-rw-r--r-- | usr.bin/mandoc/man_validate.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/mandoc/man_validate.c b/usr.bin/mandoc/man_validate.c index 954849f650c..66b5fc5248f 100644 --- a/usr.bin/mandoc/man_validate.c +++ b/usr.bin/mandoc/man_validate.c @@ -1,4 +1,4 @@ -/* $Id: man_validate.c,v 1.18 2010/04/07 23:15:05 schwarze Exp $ */ +/* $Id: man_validate.c,v 1.19 2010/04/25 16:32:19 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se> * @@ -99,6 +99,9 @@ static const struct man_valid man_valids[MAN_MAX] = { { pres_roff, NULL }, /* ami */ { pres_roff, NULL }, /* ig */ { NULL, NULL }, /* . */ + { NULL, NULL }, /* if */ + { NULL, NULL }, /* ie */ + { NULL, NULL }, /* el */ }; |