diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2015-01-26 13:02:54 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2015-01-26 13:02:54 +0000 |
commit | 9cbba45f313461e4e99905ca586623b84eae1631 (patch) | |
tree | 5ad8e430aaaf0ec3fb94d53dbfb0ecf883a9fec2 /usr.bin/mandoc/read.c | |
parent | aafbfd546cc379bad2d21c246effe54de0b9de92 (diff) |
More improvements regarding tbl(7) options.
* Treat "allbox" as an alias for "box" for now.
* Parse and ignore the GNU tbl "nowarn" option.
* For separation, allow spaces, tabs, and commas only.
* Mark eqn(7) within tbl(7) as unsupported.
* Simplify the option table.
* Improve and sort documentation.
Diffstat (limited to 'usr.bin/mandoc/read.c')
-rw-r--r-- | usr.bin/mandoc/read.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mandoc/read.c b/usr.bin/mandoc/read.c index f2b4d96d28d..f38fbc62083 100644 --- a/usr.bin/mandoc/read.c +++ b/usr.bin/mandoc/read.c @@ -1,4 +1,4 @@ -/* $OpenBSD: read.c,v 1.91 2015/01/26 00:54:09 schwarze Exp $ */ +/* $OpenBSD: read.c,v 1.92 2015/01/26 13:02:53 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2010-2015 Ingo Schwarze <schwarze@openbsd.org> @@ -219,6 +219,7 @@ static const char * const mandocerrs[MANDOCERR_MAX] = { "unsupported roff request", "unsupported table layout", "ignoring macro in table", + "eqn in tbl", }; static const char * const mandoclevels[MANDOCLEVEL_MAX] = { |