diff options
author | 2009-10-27 21:40:07 +0000 | |
---|---|---|
committer | 2009-10-27 21:40:07 +0000 | |
commit | b822ca0d77807d44eec5a00444afad079a24e43c (patch) | |
tree | 61739724919c5c74eb5ced4fd954890ec97056bc /usr.bin/mandoc/man.h | |
parent | update moduli file; ok deraadt (diff) | |
download | wireguard-openbsd-b822ca0d77807d44eec5a00444afad079a24e43c.tar.xz wireguard-openbsd-b822ca0d77807d44eec5a00444afad079a24e43c.zip |
sync to 1.9.11: adapt printing of dates to groff conventions,
NetBSD portability fixes and some minor bugfixes and feature enhancements;
also checked that my hyphenation code still works on top of this
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 deb7b897e39..31841e55322 100644 --- a/usr.bin/mandoc/man.h +++ b/usr.bin/mandoc/man.h @@ -1,4 +1,4 @@ -/* $Id: man.h,v 1.10 2009/10/19 21:08:58 schwarze Exp $ */ +/* $Id: man.h,v 1.11 2009/10/27 21:40:07 schwarze Exp $ */ /* * Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se> * @@ -50,7 +50,8 @@ #define MAN_RS 28 #define MAN_DT 29 #define MAN_UC 30 -#define MAN_MAX 31 +#define MAN_PD 31 +#define MAN_MAX 32 enum man_type { MAN_TEXT, |