diff options
author | 2009-09-18 22:46:14 +0000 | |
---|---|---|
committer | 2009-09-18 22:46:14 +0000 | |
commit | 0b55bec8a08c47c3c30ec55f34f219605f443fbd (patch) | |
tree | 7b61c6e71894a797d243f09a13116d2cbcfa26de /usr.bin/mandoc/man_validate.c | |
parent | fix typo (overriden -> overridden); from jmc@; included in 1.9.2 (diff) | |
download | wireguard-openbsd-0b55bec8a08c47c3c30ec55f34f219605f443fbd.tar.xz wireguard-openbsd-0b55bec8a08c47c3c30ec55f34f219605f443fbd.zip |
sync to 1.9.2: Add .UC libman macro for compatibility, has no effect.
Correct .UC and .DT to not print their arguments.
Document that .UC and .DT should not be used.
Diffstat (limited to 'usr.bin/mandoc/man_validate.c')
-rw-r--r-- | usr.bin/mandoc/man_validate.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mandoc/man_validate.c b/usr.bin/mandoc/man_validate.c index cb07087c74d..358c23bdb91 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.8 2009/08/22 23:17:40 schwarze Exp $ */ +/* $Id: man_validate.c,v 1.9 2009/09/18 22:46:14 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se> * @@ -86,6 +86,7 @@ static const struct man_valid man_valids[MAN_MAX] = { { NULL, NULL }, /* RE */ { NULL, posts_part }, /* RS */ { NULL, NULL }, /* DT */ + { NULL, NULL }, /* UC */ }; |