diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2009-10-27 21:40:08 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2009-10-27 21:40:08 +0000 |
commit | fcc08b65e276a9be86ea52f65b26e26619b5ca01 (patch) | |
tree | f113fff7e936a79fd5edef4b4c36e858e23c6d5f /usr.bin/mandoc/mdoc.h | |
parent | 670392d0ffe442528a312c1d252504728482419f (diff) |
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/mdoc.h')
-rw-r--r-- | usr.bin/mandoc/mdoc.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/usr.bin/mandoc/mdoc.h b/usr.bin/mandoc/mdoc.h index 0a8bdfeb674..648f4818ca1 100644 --- a/usr.bin/mandoc/mdoc.h +++ b/usr.bin/mandoc/mdoc.h @@ -1,4 +1,4 @@ -/* $Id: mdoc.h,v 1.14 2009/10/21 19:13:50 schwarze Exp $ */ +/* $Id: mdoc.h,v 1.15 2009/10/27 21:40:07 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se> * @@ -17,8 +17,6 @@ #ifndef MDOC_H #define MDOC_H -#include <time.h> - /* * This library implements a validating scanner/parser for ``mdoc'' roff * macro documents, a.k.a. BSD manual page documents. The mdoc.c file @@ -149,7 +147,8 @@ #define MDOC__Q 117 #define MDOC_br 118 #define MDOC_sp 119 -#define MDOC_MAX 120 +#define MDOC__U 120 +#define MDOC_MAX 121 /* What follows is a list of ALL possible macro arguments. */ |