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.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.c')
-rw-r--r-- | usr.bin/mandoc/man.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/man.c b/usr.bin/mandoc/man.c index ab25e160094..c3888bb684c 100644 --- a/usr.bin/mandoc/man.c +++ b/usr.bin/mandoc/man.c @@ -1,4 +1,4 @@ -/* $Id: man.c,v 1.11 2009/09/18 22:37:05 schwarze Exp $ */ +/* $Id: man.c,v 1.12 2009/09/18 22:46:14 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se> * @@ -54,7 +54,7 @@ const char *const __man_macronames[MAN_MAX] = { "R", "B", "I", "IR", "RI", "na", "i", "sp", "nf", "fi", "r", "RE", - "RS", "DT" + "RS", "DT", "UC" }; const char * const *man_macronames = __man_macronames; |