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/mdoc.h | |
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/mdoc.h')
-rw-r--r-- | usr.bin/mandoc/mdoc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mandoc/mdoc.h b/usr.bin/mandoc/mdoc.h index 3b01a1854b9..80e04579da4 100644 --- a/usr.bin/mandoc/mdoc.h +++ b/usr.bin/mandoc/mdoc.h @@ -1,4 +1,4 @@ -/* $Id: mdoc.h,v 1.26 2010/05/24 00:00:10 schwarze Exp $ */ +/* $Id: mdoc.h,v 1.27 2010/06/06 20:30:08 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se> * @@ -149,6 +149,7 @@ enum mdoct { MDOC_br, MDOC_sp, MDOC__U, + MDOC_Ta, MDOC_MAX }; |