]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - NEWS
Import mandoc 1.4.1rc2
[FreeBSD/FreeBSD.git] / NEWS
1 $Id: NEWS,v 1.20 2017/02/16 14:38:12 schwarze Exp $
2
3 This file lists the most important changes in the mdocml.bsd.lv distribution.
4
5 Changes in version 1.14.1, released on February XXX, 2017
6
7     --- MAJOR NEW FEATURES ---
8  * apropos(1): Reimplement complete semantic search functionality
9    without the dependency on SQLite3, using only POSIX APIs.
10    This comes with a completely new mandoc.db(5) file format.
11  * man(1): Support more than one tag entry for the same search term,
12    plus some minor improvements to the less(1) :t support.
13  * -Thtml: Use real macro names for CSS classes.
14    Systematic cleanup of and many improvements to mandoc.css.
15  * -Thtml: Produce human readable HTML code by using indentation
16    and better line breaks.  Improve various HTML elements,
17    and trim several useless ones.
18  * New catman(8) utility, still somewhat experimental.
19  * Now includes a portable version of the OpenBSD mandoc regression
20    suite, see regress/regress.pl.1 for details.
21     --- REMOVED FUNCTIONALITY ---
22  * Operating systems that don't provide mmap(3) are no longer supported.
23  * Drop support for manpath(1).  Even if your system has manpath(1),
24    it is simpler to use MANPATH_DEFAULT in configure.local for
25    operating system defaults, man.conf(5) for machine-specific
26    modifications, and ${MANPATH}, -m, and -M for user preferences
27    than to bother with the complexity of manpath(1).
28  * makewhatis(8) -p: No longer warn about missing MLINKS since these
29    are no longer needed for anything.
30     --- MINOR NEW FEATURES ---
31  * mdoc(7): Warn about invalid punctuation and content below NAME.
32  * mdoc(7): Warn about .Xr lacking the second argument (section).
33  * mdoc(7): Warn about violations of the rule "new sentence, new line".
34  * roff(7): Warn about trailing whitespace at the end of comments.
35  * mdoc(7): Improve rendering of double quotes.
36  * mdoc(7): Always do text production in the validator, never in the
37    formatters.  Cleaner, simpler, shorter, helps NetBSD apropos(1)
38    and also makes -Ttree output more useful.
39  * -Ttree: Show metadata and some additional node flags.
40    New -Onoval output option to show the unvalidated tree.
41     --- RELIABILITY BUGFIXES ---
42  * man(1): Make "man -l" work with standard input from a pipe or file,
43    as long as standard output is a terminal.
44  * man(7): Fix out of bounds read access if a text node immediately
45    preceded the first .SH header.
46  * mdoc(7): Fix out of bounds read access for .Bl without a type
47    but with a width.
48  * mdoc(7): Fix out of bounds read access for .Bl -column starting
49    with a tab character instead of a child .It macro.
50  * mdoc(7): Fix syntax tree corruption leading to segfaults caused
51    by stray block end macros in nested blocks of mismatching type.
52  * man(1): Fix NULL dereference when the first of multiple pages
53    shown was preformatted.
54  * mdoc(7): Fix syntax tree corruption leading to NULL dereference
55    caused by partial implicit macros inside .Bl -column table cells.
56  * mdoc(7): Fix syntax tree corruption leading to NULL dereference
57    for macro sequences like .Bl .Bl .It Bo .El .It.
58  * mdoc(7): Fix syntax tree corruption leading to NULL dereference
59    caused by .Ta following a nested .Bl -column breaking another block.
60  * mdoc(7): Fix syntax tree corruption sometimes leading to NULL
61    dereference caused by indirectly broken .Nd or .Nm blocks.
62  * mdoc(7) -Thtml: Fix a NULL dereference for .Bl -column with 0 columns.
63  * mdoc(7): Fix NULL dereference in some specific cases of a
64    block-end macro calling another block-end macro.
65  * mdoc(7): Fix NULL dereference if the only child of the head
66    of the first .Sh was an empty in-line macro.
67  * eqn(7): Fix NULL dereference in the terminal formatter
68    for empty matrices and empty square roots.
69  * mdoc(7): Fix an assertion failure for a .Bd without a type that
70    breaks another block.
71  * mdoc(7): Fix an assertion failure that happened for some .Bl -column
72    lists containing a column width of "-4n", "-3n", or "-2n".
73  * mdoc(7): Fix an assertion failure caused by .Bl -column without .It
74    but containing eqn(7) or tbl(7) code.
75  * roff(7): Fix an assertion failure caused by \z\[u00FF] with -Tps/-Tpdf.
76  * roff(7): Fix an assertion failures caused by whitespace inside \o''
77    (overstrike) sequences.
78  * -Thtml: Fix an assertion failure caused by -Oman or -Oincludes of
79    excessive length.
80     --- PORTABILITY IMPROVEMENTS ---
81  * man(1): Do not mix stdio narrow and wide stream orientation
82    on stdout, which could cause output corruption on glibc.
83  * mandoc(1): Autodetect a suitable locale for -Tutf8 mode.
84  * ./configure: Autodetect whether PATH_MAX and O_DIRECTORY are defined.
85  * ./configure: Autodetect if nanosleep(3) needs -lrt.
86  * ./configure: Provide an ${LN} configuration variable.
87  * ./configure: Put compiler arguments that may contain -l at the end.
88     --- MINOR BUGFIXES ---
89  * mdoc(7): Fix SYNOPSIS output if the first child of .Nm is a macro.
90  * mdoc(7) -Thtml: Improve formatting of .Bl -tag with short tags.
91  * man(7) -Thtml: Preserve whitespace in .nf (nofill) mode.
92  * mandoc(1): Error out on invalid output options on the command line.
93     --- STRUCTURAL CHANGES, no functional change ---
94  * Redesign part of the mandoc_html(3) interfaces, making them much
95    easier to use and reducing the amount of code by a few hundred lines.
96     --- THANKS TO ---
97  * Michael Stapelberg (Debian) for designing the new mandocd(8)
98    and parts of the new catman(8), and for a number of patches
99    and bug reports.
100  * Baptiste Daroussin (FreeBSD) for profiling the new makewhatis(8)
101    implementation and suggesting an algorithmic improvement which
102    more than doubled performance, and for a few bug reports.
103  * Ed Maste (FreeBSD) for an important patch improving reproducibility
104    of builds in makewhatis(8), and for a few bug reports.
105  * Theo Buehler (OpenBSD) for more than ten important bug reports,
106    most of them found by systematic afl(1) fuzzing.
107  * Benny Lofgren, David Dahlberg, and in particular Vadim Zhukov
108    for crucial help in getting .Bl -tag CSS formatting fixed.
109  * Svyatoslav Mishyn (Crux Linux) for an initial version of the
110    patch to autodetect a suitable locale for -Tutf8 mode.
111  * Jason McIntyre (OpenBSD) for multiple useful discussions
112    and a number of bug reports.
113  * Alexander Bluhm, Andrew Fresh, Antoine Jacoutot, Antony Bentley,
114    Christian Weisgerber, Jonathan Gray, Marc Espie, Martijn van Duren,
115    Stuart Henderson, Ted Unangst, Theo de Raadt (OpenBSD), Abhinav
116    Upadhyay, Christos Zoulas, Kamil Rytarowski, Sevan Janiyan,
117    Thomas Klausner (NetBSD), Aaron M. Ucko, Bdale Garbee, Reiner
118    Herrmann, Shane Kerr (Debian), Leah Neukirchen (Void Linux),
119    Daniel Sabogal (Alpine Linux), Yuri Pankov (illumos),
120    Carsten Kunze (Heirloom roff), Kristaps Dzonsons (bsd.lv),
121    Anton Lindqvist, Jan Stary, Jeremy A. Mates, Mark Patruck,
122    Pavan Maddamsetti, Sean Levy <attila@stalphonsos.com>, and
123    Tiago Silva for bug reports.
124  * Brent Cook, Marc Espie, Philip Guenther, Todd Miller (OpenBSD)
125    and Markus Waldeck for useful discussions.
126  * And as usual, OpenCSW for providing me with a Solaris 9/10/11
127    testing environment.
128
129 Changes in version 1.13.4, released on July 14, 2016
130
131     --- MAJOR NEW FEATURES ---
132  * man.conf(5): Design and implement a simpler configuration file format.
133  * man(1): Leverage less(1) -T and :t in a way resembling ctags(1)
134    to jump to the definitions of various terms inside manual pages.
135  * soelim(1): New implementation by Baptiste Daroussin.
136  * privilege limitation: Use OpenBSD pledge(2) or OS X sandbox_init(3)
137    when available.
138  * man.cgi(8): Support short URIs like http://man.openbsd.org/mdoc .
139  * mandoc.css: Use one unified stylesheet rather than three different ones.
140     --- MAJOR FUNCTIONALLY RELEVANT BUGFIXES ---
141  * mdoc(7): Fix multiple aspects of SYNOPSIS .Nm formatting.
142  * man(1): Fix process group handling, avoiding unclean shutdowns.
143     --- PORTABILITY IMPROVEMENTS ---
144  * Correctly use the ohash(3) compatibility implementation
145    even when building without SQLite support.
146  * Add compat glue for building on Solaris 9 and 10.
147  * Let ./configure select a supported RE syntax for word boundaries.
148  * Support LDFLAGS, to be used for example for hardening options.
149  * Avoid mixing putchar(3) and putwchar(3) on the same file descriptor,
150    it resulted in output corruption on some platforms.
151  * Avoid reusing va_lists, use va_copy(3) for better portability.
152  * Do not hardcode the path to the more(1) program.
153     --- MINOR NEW FEATURES ---
154  * roff(7): Implement \n(.$ (number of macro arguments).
155  * roff(7): Fully implement \z (do not advance cursor).
156  * roff(7): Implement the `r'  conditional (register exists).
157  * roff(7): Implement \\$* (interpolate all arguments).
158  * roff(7): Parse and ignore \, and \/ (italic corrections).
159  * When there is no -m, no -M, no MANPATH and no /etc/man.conf,
160    fall back to /usr/share/man:/usr/X11R6/man:/usr/local/man.
161  * man(1): Give manuals in purely numerical sections priority over
162    manuals of the same name in sections with an alphabetical suffix.
163  * man.cgi(8): Support "header.html" and "footer.html".
164  * man.cgi(8): Set the "autofocus" attribute on the query text box.
165  * man.cgi(8): Simplify the search form, drop two useless buttons.
166  * man.cgi(8): Delete the pseudo-manpath "mandoc", assume that
167    apropos(1) and man.cgi(8) are installed in the default manpath.
168     --- RELIABILITY BUGFIXES ---
169  * mdoc(7): Avoid a use after free and an assertion failure when nodes
170    are deleted during validation.
171  * mdoc(7): Avoid a NULL pointer access when .Bd has no arguments.
172  * mdoc(7): Avoid a NULL pointer access triggered by mismatching end macros.
173  * mdoc(7): Avoid an assertion when .Fo has no argument.
174  * mdoc(7): Avoid an assertion when .Ta<tab> occurs in .Bl -column.
175  * mdoc(7): Avoid an assertion when a body gets broken and has a tail.
176  * roff(7): Avoid an assertion caused by blanks inside \o.
177  * roff(7): Make .so links to gziped manuals work without mandoc.db(5).
178  * tbl(7): Avoid a use after free when the last line of a layout is empty.
179  * eqn(7): Avoid an infinite loop caused by recursive "define".
180  * makewhatis(8): Avoid a segfault caused by unusual directory structures.
181  * Fix handling of leading, trailing, and double colons in MANPATH and -m.
182     --- MINOR BUGFIXES ---
183  * mdoc(7): Put arguments to end macros of broken partial explicit blocks
184    inside the breaking block.
185  * mdoc(7): Let .Dv force normal font.
186  * mdoc(7): Make trailing whitespace significant in .Bl -tag widths.
187  * mdoc(7): Fix macro interpretation around tabs in .Bl -column.
188  * man(7): Use the default width for .RS without arguments.
189  * man(7): On a new RS nesting level, the saved width starts from
190    the default width, not from the saved width of the previous level.
191  * man(7): Allow .PD in next-line scope.
192  * man(7): Improve handling of empty .HP.
193  * man(7): Improve formatting of .br and .sp inside .HP.
194  * man(7): Do not mistreat empty arguments to font alternating
195    macros as vertical spacing requests.
196  * man(7): Allow fill mode changes in tagged paragraph next-line scope.
197  * man(7): Fix minor bugs in block rewinding and simplify the related code.
198  * man(7): Add missing line breaks before subsection headers.
199  * man(7): Give section and subsection headers hanging indentation.
200  * man(7): Make trailing whitespace significant in .TP widths.
201  * roff(7): Don't allow breaking the output line after hyphens
202    that immediately follow escape sequences.
203  * roff(7): Ignore blank characters at the beginning of conditional blocks.
204  * roff(7): Escape breakable hyphens only after handling input line traps.
205  * roff(7): Reject \[uD800] to \[uDFFF] (surrogates) in the parser.
206  * tbl(7): Allow more than one data field after T} on the same input line.
207  * terminal output: Apply bold and italic to non-ASCII Unicode codepoints.
208  * terminal output: Improve rounding rules for horizontal scaling widths.
209  * HTML output: Render ASCII_NBRSP as "&nbsp;", not "-".
210  * man(1): Do not match the first part of a name if it continues with a dot.
211  * man(1): Keep working even if the current directory is unusable.
212  * man(1): Better error message when $PAGER is invalid.
213  * makewhatis(8): Improve handling of .Va and .Vt macros.
214  * apropos(1): Print "nothing appropriate" to stderr when appropriate.
215  * apropos(1): Abort with a useful error message when elementary
216    database operations like preparing queries or binding variables fail.
217     --- STRUCTURAL CHANGES, no functional change ---
218  * mdoc(7) and man(7): Unified data structures struct roff_node etc.
219  * mdoc(7) and man(7): Unified node handling library in roff.c.
220  * mdoc(7) and man(7): Seperate validation phase from parsing.
221  * roff(7): Major character table cleanup.
222  * Link with libz rather than forking gunzip(1).
223     --- THANKS TO ---
224  * Baptiste Daroussin (FreeBSD) for the new soelim(1)
225    and for release testing.
226  * Anthony Bentley (OpenBSD) for unifying mandoc.css, two nice
227    patches for man.cgi(8), some documentation patches, some bug
228    reports, and various useful discussions.
229  * Todd Miller (OpenBSD) for lots of help with process group and
230    signal handling, a few patches, some bug reports and some useful
231    discussions.
232  * Jonathan Gray (OpenBSD) for yet more testing with afl(1)
233    again resulting in more than half a dozen important bug reports.
234  * Svyatoslav Mishyn (Crux Linux) for some patches, several bug
235    reports, and extensive release testing.
236  * Leah Neukirchen (Void Linux) for a number of compatibility
237    patches and suggestions and several bug reports.
238  * Christos Zoulas (NetBSD) for a bug fix patch and some useful
239    suggestions for cleanup.
240  * Florian Obser (OpenBSD) for a bugfix patch and some bug reports.
241  * Sevan Janiyan for help with Solaris compatibility and release
242    testing on many platforms.
243  * Jan Holzhueter and OpenCSW in general for help with Solaris
244    compatibility, and for providing me with a Solaris 9/10/11 testing
245    environment.
246  * Michael McConville (OpenBSD) for some simple cleanup patches.
247  * Thomas Klausner (NetBSD) for some bug reports and release testing.
248  * Christian Weisgerber, Dmitrij Czarkoff, Igor Sobrado,
249    Ken Westerback, Marc Espie, Mike Belopuhov, Rafael Neves,
250    Ted Unangst, Tim van der Molen, Theo Buehler, Theo de Raadt
251    (OpenBSD), Kurt Jaeger, Dag Erling Smoergrav (FreeBSD),
252    Joerg Sonnenberger (NetBSD), Carsten Kunze (Heirloom troff),
253    Daniel Levai, Fabian Raetz, Jan Stary, Jean-Yves Migeon,
254    Lorenzo Beretta, Markus Waldeck, Maxim Belooussov, Michael Reed,
255    Peter Bray, and Serguey Parkhomovsky for bug reports and feature
256    suggestions.
257  * Alexander Hall, Andrew Fresh, Antoine Jacoutot, Doug Hogan,
258    Jason McIntyre, Jasper Lievisse Adriaanse, Kent Spillner,
259    Nicholas Marriott, Peter Hessler, Sebastien Marie, Stefan Sperling,
260    and Theo de Raadt (OpenBSD) for helpful discussions and feedback.
261
262 Changes in version 1.13.3, released on March 13, 2015
263
264     --- MAJOR NEW FEATURES ---
265  * When a manual is missing from an outdated database, let man(1)
266    show it anyway, using a KISS file system lookup as a fallback.
267  * Use this to always provide man(1), even without database support.
268  * Fatal errors no longer exist.  If a file can be opened, mandoc
269    will produce some output; at worst, the output may be almost empty.
270  * New -Wunsupp message level.
271     --- POTENTIONALLY SECURITY RELEVANT BUGFIXES ---
272  * Fix a potential write buffer overrun on incomplete string conditionals.
273    http://mdocml.bsd.lv/cgi-bin/cvsweb/roff.c#rev1.241
274  * Fix a potential write buffer overrun on backslash at EOF in a conditional.
275    http://mdocml.bsd.lv/cgi-bin/cvsweb/roff.c#rev1.247
276  * Fix a use after free sometimes hit when validation deletes a block.
277    http://mdocml.bsd.lv/cgi-bin/cvsweb/mdoc_macro.c#rev1.180
278     --- MAJOR FUNCTIONALLY RELEVANT BUGFIXES ---
279  * Let man(1) show manuals for the current architecture by default,
280    and support the MACHINE environment variable.
281  * Fix the man(1) and apropos(1) -m option, it didn't work at all.
282  * Do not spawn a pager when there is no output.
283  * In makewhatis(8), fix detection of hardlinked manuals on platforms
284    having padding in struct inodev (typically 64bit platforms).
285     --- PORTABILITY IMPROVEMENTS ---
286  * Ignore O_CLOEXEC when the operating system doesn't provide it.
287  * Avoid forward reference to enum type which violates ISO C99.
288  * Support homebrew-style linking on Mac OS X.
289     --- MINOR NEW FEATURES ---
290  * lookup: Accept digit+letter and "n" as section names in man(1),
291    and consistently handle digit+letter in file name extensions.
292  * lookup: Speed up -s/-S by using the "mlinks" rather than the "keys" table.
293  * output: Insert horizontal lines between formatted manual pages.
294  * input: New stricter and more resilient UTF-8 parser.
295  * mdoc(7): Refactor block rewinding for simpler and more robust parsing.
296  * man(7): Use the -Ios option when .TH has less than four arguments.
297  * tbl(7): Implement the "center" option.
298  * tbl(7): New option and format parsers, improved in many respects.
299  * roff(7): Basic implementation of the \o escape sequence (overstrike),
300    and improved rendering of overstrikes in PostScript and PDF output.
301  * Message improvements, in particular for, but not restricted to,
302    eqn(7), tbl(7), and wrong numbers of arguments in mdoc(7) and man(7),
303    in various cases also improving output generated by invalid input.
304  * Delete the -V option.  It serves no purpose but keeps confusing people.
305  * gmdiff: Minimal support for Heirloom roff.
306     --- RELIABILITY BUGFIXES ---
307  * tbl(7): Fix a read buffer overrun on 'f' at EOL in a layout.
308  * roff(7): Fix a read buffer overrun on incomplete numerical conditions.
309  * mdoc(7): Fix a NULL pointer access on .Nd followed by an explicit block.
310  * mdoc(7): Fix a NULL pointer access on .It Xo without .Xc.
311  * mdoc(7): Fix a NULL pointer access on .Eo without a tail.
312  * mdoc(7): Fix a NULL pointer access in the validation of empty .St macros.
313  * man(7)/tbl(7): Fix a NULL pointer access on .TS right after .TP.
314  * tbl(7): Fix a NULL pointer access on layout lines without any cells.
315  * eqn(7): Fix NULL pointer accesses in the terminal formatter.
316  * roff(7): Fix a NULL pointer access on trailing \s-/\s+ without an argument.
317  * gz: Fix a potential NULL pointer access after waitpid() failure.
318  * roff(7): Don't let the modulo operator divide by zero.
319  * input: Fix an assertion failure on certain invalid UTF-8 input.
320  * terminal output: Allow arbitrary depth of the font stack (assertion fix).
321  * mdoc(7): Fix assertion failures and endless loops on invalid block closing.
322  * mdoc(7): Fix an assertion failure on .Bl .Sm not followed by .It.
323  * mdoc(7): Fix an assertion failure on .Bl -column ... .El .Ta.
324  * tbl(7): Fix assertion failures by macros inside table data,
325    but do not throw away the macro arguments.
326  * Prevent certain kinds of unreasonable input from producing excessive
327    output, in one case caused by unsigned integer underflow.
328  * Fix a potential memory leak in makewhatis(8) on very long filenames.
329     --- MINOR BUGFIXES ---
330  * mdoc(7): Fix parsing of badly nested blocks with multiple identical blocks.
331  * mdoc(7): Support negative indentations for displays and lists.
332  * mdoc(7): Don't mistreat negative .sp arguments as large positive ones.
333  * mdoc(7): Some spacing fixes for .Eo/.Ec.
334  * man(7): Support negative horizontal widths.
335  * man(7): Do not print out invalid .IP arguments.
336  * man(7): Correctly handle scaling units after .PD.
337  * man(7): Support .RE with an argument.
338  * man(7): Fix restoring indentation after .RS with large negative arguments.
339  * tbl(7): Prevent tables from breaking the filling of preceding text.
340  * tbl(7): Fix vertical spacing at the beginning of tables.
341  * tbl(7): Parser and formatter fixes for line drawing and font modifiers.
342  * tbl(7): Correct handling of blank data lines.
343  * eqn(7): Add sometimes missing whitespace before equation output.
344  * roff(7): Fix vertical scaling, most of it was wrong.
345  * roff(7): Slightly improve \w width measurements.
346  * roff(7): Accept the historic aliases \s10 to \s39 for \s(10 to \s(39.
347  * roff(7): Correctly escape quotes when expanding macro arguments.
348  * roff(7): Correctly handle scaling units in numerical expressions,
349    and some other improvements to the parsing of numerical expressions.
350  * roff(7): Three minor fixes with respect to evaluation of conditionals.
351  * roff(7): Let .it accept numerical expressions, not just constants.
352  * mandoc_char(7): Correct some character names and renderings.
353  * If earlier files set a non-zero exit status, never reset it to zero.
354     --- THANKS TO ---
355  * Jonathan Gray (OpenBSD) for yet more testing with afl (the American
356    Fuzzy Lop security fuzzer), again resulting in many bug reports.
357  * Theo de Raadt (OpenBSD) for suggesting the main new feature (man(1) file
358    system lookup) and for reporting an important bug (pager without output).
359  * Theo Buehler for an important bug report (-s/-S slowness)
360    and for proposing a nice new feature (lines between pages).
361  * Jason McIntyre for an important bug report (hardlink detection)
362    and multiple documentation patches.
363  * Pascal Stumpf (OpenBSD) and Alessandro de Laurenzis for
364    important bug reports (architecture and man -m, respectively).
365  * Thomas Klausner (NetBSD) for proposing a new feature (man(7) -Ios),
366    a bug report, and release testing.
367  * Anthony Bentley, Daniel Dickman, Ted Unangst (OpenBSD) and
368    Kristaps Dzonsons (bsd.lv) for source code patches and bug reports.
369  * Christian Weisgerber (OpenBSD) for more than half a dozen bug reports.
370  * Carsten Kunze (Heirloom troff) for bug reports and release testing.
371  * Antoine Jacoutot (OpenBSD) for release testing.
372  * Alexis Hildebrandt (Homebrew), Baptiste Daroussin (FreeBSD),
373    Jonathan Perkin (SmartOS), Pedro Giffuni (FreeBSD), Svyatoslav
374    Mishyn (Crux Linux), Ulrich Spoerlein (FreeBSD), Jan Stary, Patrick
375    Keshishian, Sebastien Marie, and Steffen Nurpmeso for bug reports.
376
377 Changes in version 1.13.2, released on December 13, 2014
378
379     --- MAJOR NEW FEATURES ---
380  * Include an implementation of man(1), the manual page viewer.
381  * Unified set of command line option, each one supported by all
382    command names, including new options -a (format all), -c (no
383    pager), -h (synopsis only), and -w (list filenames).
384  * Support the MANPAGER and PAGER environment variables.
385  * Support gzip'ed manuals by the whole toolset, even as .so targets.
386  * Support UTF-8 and Latin-1 input by the whole toolset, delete preconv(1).
387  * Switch the default output mode from -Tascii to -Tlocale.
388  * Improve -Tascii output for Unicode escape sequences.
389  * Let the -Thtml output mode produce polyglot HTML5.
390  * Many improvements for eqn(7), in particular in-line equations,
391    MathML output in -Thtml mode, and much improved terminal formatting.
392     --- PORTABILITY IMPROVEMENTS ---
393  * Change the build sequence to the usual ./configure; make; make install.
394  * Support ./configure.local for build customizations.
395  * Autodetect wchar, sqlite3, and manpath support.
396  * Provide a fallback version of fts(3) for systems lacking it.
397  * Support choosing alternative binary and manual names.
398     --- MINOR NEW FEATURES ---
399  * Rudimentary implementation of the e, x, and z tbl(7) layout
400    modifiers to equalize, maximize, and ignore the width of columns.
401  * Implement font modifiers in tbl(7) layouts.
402  * Allow comma-separated options in the tbl(7) options line.
403  * Parse and ignore the .pl (page length) roff(7) request.
404  * Implement .An -[no]split for the mdoc(7) -Thtml output mode.
405  * Support bold italic font in PostScript and PDF output.
406  * Warn about commas in function arguments and parentheses in function names.
407  * Warn about botched .Xr ordering and punctuation below SEE ALSO.
408  * Warn about AUTHORS sections without .An macros.
409  * Warn about attempts to call non-callable macros.
410  * New developer documentation manual page mandoc_headers(3).
411     --- BUGFIXES ---
412  * Fix read buffer overrun sometimes triggered by trailing whitespace.
413  * Fix read buffer overrun triggered by certain invalid \H sequences.
414  * Fix NULL pointer access triggered by .Bl without any arguments.
415  * Fix NULL pointer access triggered by .It Nm Fo without .Fc.
416  * Fix NULL pointer access triggered by .Sh Xo .Sh without .Xc.
417  * Fix NULL pointer access triggered by missing .Nm.
418  * Fix an assertion triggered by .It right after .El.
419  * Fix an assertion triggered by .Ec without preceding .Eo.
420  * Fix an assertion triggered by .Sm or .Db with multiple arguments.
421  * Fix assertion failures triggered by very large width arguments.
422  * Fix a division by zero in the roff(7) parser.
423  * Prevent negative arguments to .ll from causing integer underflow.
424  * Correctly autodetect source format even when .Dd is preceded by .ll.
425  * Multiple fixes with respect to .Bd and .Bl -offset and -width.
426  * Many bugfixes with respect to scaling units.
427  * Multiple fixes with respect to delimiter handling by in-line macros.
428  * Multiple fixes with respect to .Pf.
429  * Make \c work properly in no-fill mode.
430  * Stricter syntax checking of Unicode character names.
431     --- THANKS TO ---
432  * Kristaps Dzonsons for rewriting the eqn(7) parser, implementing
433    HTML5 and MathML output, and various other code contributions.
434  * Jonathan Gray (OpenBSD) for extensive testing with afl (the
435    American Fuzzy Lop security fuzzer) resulting in many bug reports.
436  * Anthony Bentley (OpenBSD), Baptiste Daroussin (FreeBSD), Daniel
437    Dickman, Doug Hogan, Jason McIntyre, Theo de Raadt (OpenBSD),
438    and Martin Natano for source code patches.
439  * Carsten Kunze (Heirloom troff), Daniel Levai (Slackware),
440    Garrett D'Amore (illumos), Giovanni Becchis, Matthew Dempsky,
441    Stuart Henderson, Ted Unangst, Todd Miller (OpenBSD), Thomas
442    Klausner (NetBSD), Ulrich Spoerlein (FreeBSD), Justin Haynes,
443    Marcus Merighi, Sebastien Marie, Steffen Nurpmeso and Theo Buehler
444    for bug reports.
445
446 Changes in version 1.13.1, released on August 10, 2014
447
448     --- MAJOR NEW FEATURES ---
449  * A complete apropos(1)/makewhatis(8)/man.cgi(8) suite
450    based on SQLite3 is now included.
451  * The roff(7) parser now provides an almost complete implementation
452    of numerical expressions.
453  * Warning and error messages have been improved in many ways.
454    Almost all fatal errors were downgraded to normal errors and some
455    even to warnings.  Almost all messages now mention the macro where
456    the issue is detected and many indicate the workaround employed.
457    The mandoc(1) manual now includes a list explaining all messages.
458     --- MINOR NEW FEATURES ---
459  * The roff(7) parser now supports the .ami (append to macro with
460    indirectly specified name), .as (append to user-defined
461    string), .dei (define macro with indirectly specified name),
462    .ll (line length), and .rr (remove register) requests.
463  * The roff(7) parser now supports string comparison and numerical
464    conditionals in the .if and .ie requests.
465  * The roff parser now fully supports the \B (validate numerical
466    expression) and partially supports the \w (measure text width)
467    escape sequences.
468  * The terminal formatter now supports the \: (optional line break)
469    escape sequence.
470  * The roff parser now supports expansion of user-defined strings
471    involving indirect references.
472  * The roff(7) parser now handles some pre-defined read-only
473    number registers that occur in the pod2man(1) preamble.
474  * For backward compatibility, the mdoc(7) parser and formatters
475    now support the obsolete macros .En, .Es, .Fr, and .Ot.
476  * The mdoc(7) formatter non partially supports .Bd -centered.
477  * tbl(7) now handles leading and trailing vertical lines.
478  * The build system now provides fallback versions of strcasestr(3)
479    and strsep(3) for systems lacking them.
480  * The mdoc(7) manual now explains how various standards
481    supported by the .St macro are related to each other.
482     --- BUGFIXES ---
483  * In the roff(7) parser, several bugs were fixed with respect
484    to closing conditional blocks on macro lines.
485  * Parsing of roff(7) identifiers and escape sequences was improved
486    in multiple respects.
487  * In the mdoc(7) parser, the handling of defective document
488    prologues was improved in multiple ways.
489  * The mdoc(7) parser no longer skips content before the first section
490    header, and it no longer deletes non-.% content from .Rs blocks.
491  * In the mdoc(7) parser, a crash was fixed related to weird .Sh headers.
492  * In the mdoc(7) parser, handling of .Sm with missing or invalid
493    arguments was corrected.
494  * In the mdoc(7) parser, trailing punctuation at the end of partial
495    implicit macros no longer triggers end-of-sentence spacing.
496  * In the terminal formatter, two crashes were fixed: one triggered by
497    excessive indentation and another by excessively long .Nm arguments.
498  * In the terminal formatter, a floating point rounding bug was
499    fixed that sometimes caused an off-by-one error in indentation.
500  * In the UTF-8 formatter, rendering of accents, breakable hyphens,
501    and non-breakable spaces was corrected.
502  * In the HTML formatter, encoding of special characters was
503    corrected in multiple respects.
504  * In the mdoc(7) formatter, rendering of .Ex and .Rv was
505    improved for various edge cases.
506  * In the mdoc(7) formatter, handling of empty .Bl -inset item
507    heads was improved.
508  * In the man(7) formatter, some bugs were fixed with respect
509    to same-line detection in the context of .TP and .nf macros,
510    and the indentation of .IP and .TP blocks was improved.
511  * The mandoc(3) library no longer prints to stderr.
512     --- THANKS TO ---
513    Abhinav Upadhyay (NetBSD), Andreas Voegele, Anthony Bentley (OpenBSD),
514    Christian Weisgerber (OpenBSD), Havard Eidnes (NetBSD), Jan Stary,
515    Jason McIntyre (OpenBSD), Jeremie Courreges-Anglas (OpenBSD),
516    Joerg Sonnenberger (NetBSD), Juan Francisco Cantero Hurtado (OpenBSD),
517    Marc Espie (OpenBSD), Matthias Scheler (NetBSD), Pascal Stumpf (OpenBSD),
518    Paul Onyschuk (Alpine Linux), Sebastien Marie, Steffen Nurpmeso,
519    Stuart Henderson (OpenBSD), Ted Unangst (OpenBSD), Theo de Raadt (OpenBSD),
520    Thomas Klausner (NetBSD), and Ulrich Spoerlein (FreeBSD)
521    for reporting bugs and missing features.
522
523 Changes in version 1.12.3, released on December 31, 2013
524
525  * In the mdoc(7) SYNOPSIS, line breaks and hanging indentation
526    now work correctly for .Fo/.Fa/.Fc and .Fn blocks.
527    Thanks to Franco Fichtner for doing part of the work.
528  * The mdoc(7) .Bk macro got some addititonal bugfixes.
529  * In mdoc(7) macro arguments, double quotes can now be quoted
530    by doubling them, just like in man(7).
531    Thanks to Tsugutomo ENAMI for the patch.
532  * At the end of man(7) macro lines, end-of-sentence spacing
533    now works.  Thanks to Franco Fichtner for the patch.
534  * For backward compatibility, the man(7) parser now supports the
535    man-ext .UR/.UE (uniform resource identifier) block macros.
536  * The man(7) parser now handles closing blocks that are not open
537    more gracefully.
538  * The man(7) parser now ignores blank lines right after .SH and .SS.
539  * In the man(7) formatter, reset indentation when leaving a block,
540    not just when entering the next one.
541  * The roff(7) .nr request now supports incrementing and decrementing
542    number registers and stops parsing the number right before the
543    first non-digit character.
544  * The roff(7) parser now supports the alternative escape sequence
545    syntax \C'uXXXX' for Unicode characters.
546  * The roff(7) parser now parses and ignores the .fam (font family)
547    and .hw (hyphenation points) requests and the \d and \u escape
548    sequences.
549  * The roff(7) manual got a new ESCAPE SEQUENCE REFERENCE.
550
551 Changes in version 1.12.2, released on Oktober 5, 2013
552
553  * The mdoc(7) to man(7) converter, to be called as mandoc -Tman,
554    is now fully functional.
555  * The mandoc(1) utility now supports the -Ios (default operating system)
556    input option, and the -Tutf8 output mode now actually works.
557  * The mandocdb(8) utility no longer truncates existing databases when
558    starting to build new ones, but only replaces them when the build
559    actually succeeds.
560  * The man(7) parser now supports the PD macro (paragraph distance),
561    and (for GNU man-ext compatibility only) EX (example block) and EE
562    (example end).  Plus several bugfixes regarding indentation, line
563    breaks, and vertical spacing, and regarding RS following TP.
564  * The roff(7) parser now supports the \f(BI (bold+italic) font escape,
565    the \z (zero cursor advance) escape and the cc (change control
566    character) and it (input line trap) requests. Plus bugfixes regarding
567    the \t (tab) escape, nested escape sequences, and conditional requests.
568  * In mdoc(7), several bugs were fixed related to UTF-8 output of quoting
569    enclosures, delimiter handling, list indentation and horizontal and
570    vertical spacing, formatting of the Lk, %U, and %C macros, plus some
571    bugfixes related to the handling of syntax errors like badly nested
572    font blocks, stray Ta macros outside column lists, unterminated It Xo
573    blocks, and non-text children of Nm blocks.
574  * In tbl(7), the width of horizontal spans and the vertical spacing
575    around tables was corrected, and in man(7) files, a crash was fixed
576    that was triggered by some particular unclosed T{ macros.
577  * For mandoc developers, we now provide a tbl(3) library manual and
578    gmdiff, a very small, very simplistic groff-versus-mandoc output
579    comparison tool.
580  * Provide this NEWS file.
581
582 Changes in version 1.12.1, released on March 23, 2012
583
584  * Significant work on apropos(1) and mandocdb(8). These tools are now
585    much more robust.  A whatis(1) implementation is now handled as an
586    apropos(1) mode.  These tools are also able to minimally handle
587    pre-formatted pages, that is, those already formatted by another
588    utility such as GNU troff.
589  * The man.cgi(7) script is also now available for wider testing.
590    It interfaces with mandocdb(8) manuals cached by catman(8).
591    HTML output is generated on-the-fly by libmandoc or internal
592    methods to convert pre-formatted pages.
593  * The mailing list archive for the discuss and tech lists are being
594    hosted by Gmane at gmane.comp.tools.mdocml.user and
595    gmane.comp.tools.mdocml.devel, respectively.
596
597 Changes in version 1.12.0, released on October 8, 2011
598
599  * This version features a new, work-in-progress mandoc(1) output mode:
600    -Tman.  This mode allows a system maintainer to distribute man(7)
601    media for older systems that may not natively support mdoc(7), such
602    as old Solaris systems.
603  * The -Ofragment option was added to mandoc(1)'s -Thtml and -Txhtml modes.
604  * While adding features, an apropos(1) utility has been merged from the
605    mandoc-tools sandbox.  This interfaces with mandocdb(8) for semantic
606    search of manual content.  apropos(1) is different from the traditional
607    apropos primarily in allowing keyword search (such as for functions,
608    utilities, etc.) and regular expressions.  Note that the calling
609    syntax for apropos is likely to change as it settles down.
610  * In documentation news, the mdoc(7) and man(7) manuals have been
611    made considerably more readable by adding MACRO OVERVIEW sections, by
612    moving the gory details of the LANGUAGE SYNTAX to the roff(7) manual,
613    and by moving the very technical MACRO SYNTAX sections down to the
614    bottom of the page.
615  * Furthermore, for tbl(7), the -Tascii mode horizontal spacing of tables
616    was rewritten completely.  It is now compatible with groff(1), both
617    with and without frames and rulers.
618  * Nesting of indented blocks is now supported in man(7), and several
619    bugs were fixed regarding indentation and alignment.
620  * The page headers in mdoc(7) are now nicer for very long titles.
621
622 Changes in version 1.11.7, released on September 2, 2011
623
624  * Added demandoc(1) utility for stripping away macros and escapes.
625    This replaces the historical deroff(1) utility.
626  * Also improved the mdoc(7) and man(7) manuals.
627
628 Changes in version 1.11.6, released on August 16, 2011
629
630  * Handling of tr macro in roff(7) implemented.  This makes Perl
631    documentation much more readable.  Hyphenation is also now enabled in
632    man(7) format documents.  Many other general improvements have been
633    implemented.
634
635 Changes in version 1.11.5, released on July 24, 2011
636
637  * Significant eqn(7) improvements.  mdocml can now parse arbitrary eqn
638    input (although few GNU extensions are accepted, nor is mixing
639    low-level roff with eqn).  See the eqn(7) manual for details.
640    For the time being, equations are rendered as simple in-line text.
641    The equation parser satisfies the language specified in the
642    Second Edition User's Guide:
643    http://www.kohala.com/start/troff/v7man/eqn/eqn2e.ps
644
645 Changes in version 1.11.4, released on July 12, 2011
646
647  * Bug-fixes and clean-ups across all systems, especially in mandocdb(8)
648    and the man(7) parser.  This release was significantly assisted by
649    participants in OpenBSD's c2k11.  Thanks!
650
651 Changes in version 1.11.3, released on May 26, 2011
652
653  * Introduce locale-encoding of output with the -Tlocale output option and
654    Unicode escaped-character input.  See mandoc(1) and mandoc_char(7),
655    respectively, for details.  This allows for non-ASCII characters (e.g.,
656    \[u5000]) to be rendered in the locale's encoding, if said environment
657    supports wide-character encoding (if it does not, -Tascii is used
658    instead).  Locale support can be turned off at compile time by removing
659    -DUSE_WCHAR in the Makefile, in which case -Tlocale is always a synonym
660    for -Tascii.
661  * Furthermore, multibyte-encoded documents, such as those in UTF-8, may
662    be on-the-fly recoded into mandoc(1) input by using the newly-added
663    preconv(1) utility.  Note: in the future, this feature may be
664    integrated into mandoc(1).
665
666 Changes in version 1.11.2, released on May 12, 2011
667
668  * Corrected some installation issues in version 1.11.1.
669  * Further migration to libmandoc.
670  * Initial public release (this utility is very much under development)
671    of mandocdb(8).  This utility produces keyword databases of manual
672    content, which features semantic querying of manual content.
673
674 Changes in version 1.11.1, released on April 4, 2011
675
676  * The earlier libroff, libmdoc, and libman soup have been merged into
677    a single library, libmandoc, which manages all aspects of parsing
678    real manuals, from line-handling to tbl(7) parsing.
679  * As usual, many general fixes and improvements have also occurred.
680    In particular, a great deal of redundancy and superfluous code has
681    been removed with the merging of the backend libraries.
682  * see also the changes in 1.10.10
683
684 Changes in version 1.10.10, March 20, 2011, NOT released
685
686  * Initial eqn(7) functionality is in place.  For the time being,
687    this is limited to the recognition of equation blocks;
688    future version of mdocml will expand upon this framework.
689
690 Changes in version 1.10.9, released on January 7, 2011
691
692  * Many back-end fixes have been implemented: argument handling (quoting),
693    man(7) improvements, error/warning classes, and many more.
694  * Initial tbl(7) functionality (see the "TS", "TE", and "T&" macros in
695    the roff(7) manual) has been merged from tbl.bsd.lv.  Output is still
696    minimal, especially for -Thtml and -Txhtml, but manages to at least
697    display data.  This means that mandoc(1) now has built-in support
698    for two troff preprocessors via libroff: soelim(1) and tbl(1).
699
700 Changes in version 1.10.8, released on December 24, 2010
701
702  * Overhauled the -Thtml and -Txhtml output modes.  They now display
703    readable output in arbitrary browsers, including text-based ones like
704    lynx(1).  See HTML and XHTML manuals in the DOCUMENTATION section
705    for examples.  Attention: available style-sheet classes have been
706    considerably changed!  See the example.style.css file for details.
707    Lastly, libmdoc and libman have been cleaned up and reduced in size
708    and complexity.
709  * see also the changes in 1.10.7
710
711 Changes in version 1.10.7, December 6, 2010, NOT released
712
713  Significant improvements merged from OpenBSD downstream, including:
714  * many new roff(7) components,
715  * in-line implementation of troff's soelim(1),
716  * broken-block handling,
717  * overhauled error classifications, and
718  * cleaned up handling of error conditions.
719
720 Changes in version 1.10.6, released on September 27, 2010
721
722  * Calling conventions for mandoc(1) have changed: -W improved and -f
723    deprecated.
724  * Non-ASCII characters are also now uniformly discarded.
725  * Lots of documentation improvements.
726  * Many incremental fixes accomodating for groff's more interesting
727    productions.
728  * Lastly, pod2man(1) preambles are now fully accepted after some
729    considerable roff(7) and special character support.
730
731 Changes in version 1.10.5, released on July 27, 2010
732
733  * Primarily a bug-fix and polish release, but including -Tpdf support
734    in mandoc(1) by way of "Summer of Code".  Highlights:
735  * fix "Sm" and "Bd" handling
736  * fix end-of-sentence handling for embedded sentences
737  * polish man(7) documentation
738  * document all mdoc(7) macros
739  * polish mandoc(1) -Tps output
740  * lots of internal clean-ups in character escapes
741  * un-break literal contexts in man(7) documents
742  * improve -Thtml output for -man
743  * add mandoc(1) -Tpdf support
744
745 Changes in version 1.10.4, released on July 12, 2010
746
747  * Lots of features developed during both "Summer of Code" and the
748    OpenBSD c2k10 hackathon:
749  * minimal "ds" roff(7) symbols are supported
750  * beautified SYNOPSIS section output
751  * acceptance of scope-block breakage in mdoc(7)
752  * clarify error message status
753  * many minor bug-fixes and formatting issues resolved
754  * see also changes in 1.10.3
755
756 Changes in version 1.10.3, June 29, 2010, NOT released
757
758  * variable font-width and paper-size support in mandoc(1) -Tps output
759  * "Bk" mdoc(7) support
760
761 Changes in version 1.10.2, released on June 19, 2010
762
763  * Small release featuring text-decoration in -Tps output,
764    a few minor relaxations of errors, and some optimisations.
765
766 Changes in version 1.10.1, released on June 7, 2010
767
768  * This primarily focusses on the "Bl" and "It" macros described in
769    mdoc(7).  Multi-line column support is now fully compatible with groff,
770    as are implicit list entries for columns.
771  * Removed manuals(7) in favour of http://manpages.bsd.lv.
772  * The way we handle the SYNOPSIS section (see the SYNOPSIS documentation
773    in MANUAL STRUCTURE) has also been considerably simplified compared
774    to groff's method.
775  * Furthermore, the -Owidth=width output option has been added to -Tascii,
776    see mandoc(1).
777  * Lastly, initial PostScript output has been added with the -Tps option
778    to mandoc(1).  It's brutally simple at the moment: fixed-font, with no
779    font decorations.
780
781 Changes in version 1.10.0, released on May 29, 2010
782
783  * Release consisting of the results from the m2k10 hackathon and up-merge
784    from OpenBSD.  This requires a significant note of thanks to Ingo
785    Schwarze (OpenBSD) and Joerg Sonnenberger (NetBSD) for their hard work,
786    and again to Joerg for hosting m2k10.  Highlights (mostly cribbed from
787    Ingo's m2k10 report) follow in no particular order:
788  * a libroff preprocessor in front of libmdoc and libman stripping out
789    roff(7) instructions;
790  * end-of-sentence (EOS) detection in free-form and macro lines;
791  * correct handling of tab-separated columnar lists in mdoc(7);
792  * improved main calling routines to optionally use mmap(3) for better
793    performance;
794  * cleaned up exiting when invoked as -Tlint or over multiple files
795    with -fign-errors;
796  * error and warning message handling re-written to be unified for
797    libroff, libmdoc, and libman;
798  * handling of badly-nested explicit-scoped macros;
799  * improved free-form text parsing in libman and libmdoc;
800  * significant GNU troff compatibility improvements in -Tascii,
801    largely in terms of spacing;
802  * a regression framework for making sure the many fragilities of GNU
803    troff aren't trampled in subsequent work;
804  * support for -Tascii breaking at hyphens encountered in free-form text;
805  * and many more minor fixes and improvements
806
807 Changes in version 1.9.25, released on May 13, 2010
808
809  * Fixed handling of "\*(Ba" escape.
810  * Backed out -fno-ign-chars (pointless complexity).
811  * Fixed erroneous breaking of literal lines.
812  * Fixed SYNOPSIS breaking lines before non-initial macros.
813  * Changed default section ordering.
814  * Most importantly, the framework for end-of-sentence double-spacing is
815    in place, now implemented for the "end-of-sentence, end-of-line" rule.
816  * This is a stable roll-back point before the mandoc hackathon in Rostock!
817
818 Changes in version 1.9.24, released on May 9, 2010
819
820  * Rolled back break-at-hyphen.
821  * -DUGLY is now the default (no feature splits!).
822  * Free-form text is not de-chunked any more: lines are passed
823    whole-sale into the front-end, including whitespace.
824  * Added mailing lists.
825
826 Changes in version 1.9.23, released on April 7, 2010
827
828  * mdocml has been linked to the OpenBSD build.
829  * This version incorporates many small changes, mostly from patches
830    by OpenBSD, allowing crufty manuals to slip by with warnings instead
831    of erroring-out.
832  * Some subtle semantic issues, such as punctuation scope, have also
833    been fixed.
834  * Lastly, some issues with -Thtml have been fixed, which prompted an
835    update to the online manual pages style layout.
836
837 Changes in version 1.9.22, released on March 31, 2010
838
839  * Adjusted merge of the significant work by Ingo Schwarze
840    in getting "Xo" blocks (block full implicit, e.g., "It"
841    for non-columnar lists) to work properly.  This isn't
842    enabled by default: you must specify -DUGLY as a compiler
843    flag (see the Makefile for details).
844
845 Changes in version 1.9.20, released on March 30, 2010
846
847  * More efforts to get roff instructions in man(7) documents under
848    control.  Note that roff instructions embedded in line-scoped,
849    next-line macros (e.g. "B") are not supported.
850  * Leading punctuation for mdoc(7) macros, such as "Fl ( ( a",
851    are now correctly handled.
852
853 Changes in version 1.9.18, released on March 27, 2010
854
855  * Many fixes (largely pertaining to scope)
856    and improvements (e.g., handling of apostrophe-control macros,
857    which fixes the strange "BR" seen in some macro output)
858    to handling roff instructions in man(7) documents.
859
860 Changes in version 1.9.17, released on March 25, 2010
861
862  * Accept perlpod(1) standard preamble.
863  * Also accept (and discard) "de", "dei", "am", "ami", and "ig"
864    roff macro blocks.
865
866 Changes in version 1.9.16, released on March 22, 2010
867
868  * Inspired by patches and bug reports by Ingo Schwarze,
869    allowed man(7) to accept non-printing elements to be nested
870    within next-line scopes, such as "br" within "B" or "TH",
871    which is valid roff.
872  * Longsoon architecture also noted and Makefile cleaned up.
873
874 Changes in version 1.9.15, released on February 18, 2010
875
876  * Moved to our new BSD.lv home.
877  * XHTML is now an acceptable output mode for mandoc(1);
878  * "Xr" made more compatible with groff;
879  * "Vt" fixed when invoked in SYNOPSIS;
880  * "\\" escape removed;
881  * end-of-line white-space detected for all lines;
882  * subtle bug fixed in list display for some modes;
883  * compatibility layer checked in for compilation in diverse
884    UNIX systems;
885  * and column lengths handled correctly.
886
887 For older releases, see the ChangeLog files
888 in http://mdocml.bsd.lv/snapshots/ .