diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2010-06-06 20:30:09 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2010-06-06 20:30:09 +0000 |
commit | 75bb8cf0a8484c092b16d08dc9ae5e4e083a073e (patch) | |
tree | 7ec6e4ef97c938087d2b585cab7839d0079e09c8 /usr.bin/mandoc/chars.c | |
parent | 38965f5299b268b94c338ebb68e4a7f8aa330325 (diff) |
Merge bsd.lv version 1.10.1 (to be released soon).
The main step forward is that this now has *much* better .Bl -column
support, now supporting many manuals that previously errored out
without producing any output.
Other fixes include:
* do not die from multiple list types, use the first and warn
* in .Bl without a type, default to -item
* various tweaks to .Dt
* fix .In, .Fd, .Ft, .Fn and .Fo formatting
* some documentation fixes and additions
* and fix a couple of bugs reported by Ulrich Spoerlein:
* better support for roff block-end "\}" without a preceding dot
* .In must not break the line outside SYNOPSIS
* spelling in some error messages
While merging, fix one regression in .In spacing
that needs to go to bsd.lv, too.
Diffstat (limited to 'usr.bin/mandoc/chars.c')
-rw-r--r-- | usr.bin/mandoc/chars.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/chars.c b/usr.bin/mandoc/chars.c index 3f839261af4..fb3c0b64ddc 100644 --- a/usr.bin/mandoc/chars.c +++ b/usr.bin/mandoc/chars.c @@ -1,4 +1,4 @@ -/* $Id: chars.c,v 1.7 2010/05/26 02:39:58 schwarze Exp $ */ +/* $Id: chars.c,v 1.8 2010/06/06 20:30:08 schwarze Exp $ */ /* * Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se> * @@ -39,7 +39,7 @@ struct ln { #define CHARS_BOTH (CHARS_CHAR | CHARS_STRING) }; -#define LINES_MAX 369 +#define LINES_MAX 370 #define CHAR(w, x, y, z, a, b) \ { NULL, (w), (y), (a), (x), (z), (b), CHARS_CHAR }, |