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.h | |
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.h')
-rw-r--r-- | usr.bin/mandoc/man.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/mandoc/man.h b/usr.bin/mandoc/man.h index 1ddeef9f981..a07e8675cfa 100644 --- a/usr.bin/mandoc/man.h +++ b/usr.bin/mandoc/man.h @@ -1,4 +1,4 @@ -/* $Id: man.h,v 1.8 2009/08/22 23:17:40 schwarze Exp $ */ +/* $Id: man.h,v 1.9 2009/09/18 22:46:14 schwarze Exp $ */ /* * Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se> * @@ -49,7 +49,8 @@ #define MAN_RE 27 #define MAN_RS 28 #define MAN_DT 29 -#define MAN_MAX 30 +#define MAN_UC 30 +#define MAN_MAX 31 enum man_type { MAN_TEXT, |