Up to [cvsweb.bsd.lv] / mandoc / regress / mdoc / Bl
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.11 / (download) - annotate - [select for diffs], Thu Feb 27 01:44:01 2020 UTC (5 years, 4 months ago) by schwarze
Branch: MAIN
CVS Tags: VERSION_1_14_6,
HEAD
Changes since 1.10: +2 -2 lines
Diff to previous 1.10 (colored)
Introduce the concept of nodes that are semantically transparent: they are skipped when looking for previous or following high-level macros. Examples include roff(7) .ft, .ll, and .ta, mdoc(7) .Sm and .Tg, and man(7) .DT and .PD. Use this concept for a variety of improved decisions in various validators and formatters. While here, * remove a few const qualifiers on struct arguments that caused trouble; * get rid of some more Yoda notation in the vicinity; * and apply some other stylistic improvements in the vicinity. I found this class of issues while considering .Tg patches from kn@.
Revision 1.10 / (download) - annotate - [select for diffs], Fri Dec 21 17:15:21 2018 UTC (6 years, 6 months ago) by schwarze
Branch: MAIN
CVS Tags: VERSION_1_14_5
Changes since 1.9: +2 -2 lines
Diff to previous 1.9 (colored)
Rename mandoc_getarg() to roff_getarg() and pass it the roff parser struct as an argument such that after copy-in, it can call roff_expand() once again, which used to be called roff_res() before this. This fixes a subtle low-level roff(7) parsing bug reported by Fabio Scotoni <fabio at esse dot ch> in the 4.4BSD-Lite2 mdoc.samples(7) manual page, because that page used an escaped escape sequence in a macro argument. To expand escaped escape sequences in quoted mdoc(7) arguments, too, stop bypassing the call to roff_getarg() in mdoc_argv.c, function args() for this case. This does not solve the case of escaped escape sequences in quoted .Bl -column phrases yet. Because roff_expand() can make the string longer, roff_getarg() can no longer operate in-place but needs to malloc(3) the returned string. In the high-level parsers, free(3) that string after processing it.
Revision 1.9 / (download) - annotate - [select for diffs], Sun Jul 16 17:59:43 2017 UTC (7 years, 11 months ago) by schwarze
Branch: MAIN
CVS Tags: VERSION_1_14_4,
VERSION_1_14_3,
VERSION_1_14_2
Changes since 1.8: +1 -1 lines
Diff to previous 1.8 (colored)
test -diag -width and -inset -width
Revision 1.8 / (download) - annotate - [select for diffs], Thu Jun 29 15:22:18 2017 UTC (8 years ago) by schwarze
Branch: MAIN
Changes since 1.7: +7 -4 lines
Diff to previous 1.7 (colored)
warn about some non-portable idioms in .Bl -column; triggered by a question from Yuri Pankov (illumos)
Revision 1.7 / (download) - annotate - [select for diffs], Wed Mar 8 22:54:34 2017 UTC (8 years, 4 months ago) by schwarze
Branch: MAIN
Changes since 1.6: +4 -6 lines
Diff to previous 1.6 (colored)
Now that markdown output is tested for almost everything, test all input files in -T markdown output mode by default and only mark those files with SKIP_MARKDOWN that are not to be tested. Much easier to read, and almost minus 40 lines of Makefile code.
Revision 1.6 / (download) - annotate - [select for diffs], Wed Mar 8 15:08:36 2017 UTC (8 years, 4 months ago) by schwarze
Branch: MAIN
Changes since 1.5: +1 -1 lines
Diff to previous 1.5 (colored)
.Bl -column never gets blank lines between rows
Revision 1.5 / (download) - annotate - [select for diffs], Wed Mar 8 14:45:56 2017 UTC (8 years, 4 months ago) by schwarze
Branch: MAIN
Changes since 1.4: +5 -4 lines
Diff to previous 1.4 (colored)
enable -T markdown tests of filled displays and tagged lists
Revision 1.4 / (download) - annotate - [select for diffs], Tue Mar 7 15:31:25 2017 UTC (8 years, 4 months ago) by schwarze
Branch: MAIN
Changes since 1.3: +1 -1 lines
Diff to previous 1.3 (colored)
Escape blanks at the end of markdown lines such that they don't look like output line breaks.
Revision 1.3 / (download) - annotate - [select for diffs], Sun Mar 5 19:59:38 2017 UTC (8 years, 4 months ago) by schwarze
Branch: MAIN
Changes since 1.2: +5 -0 lines
Diff to previous 1.2 (colored)
first batch of -T markdown tests
Revision 1.2 / (download) - annotate - [select for diffs], Sat Feb 11 20:22:35 2017 UTC (8 years, 5 months ago) by schwarze
Branch: MAIN
CVS Tags: VERSION_1_14_1,
VERSION_1_13
Changes since 1.1: +8 -3 lines
Diff to previous 1.1 (colored)
new regression tests for mdoc_macro.c revs. 1.211-1.215
Revision 1.1 / (download) - annotate - [select for diffs], Wed Feb 8 03:02:41 2017 UTC (8 years, 5 months ago) by schwarze
Branch: MAIN
Finally port the OpenBSD regression suite. Both kristaps@ and wiz@ repeated asked for this, literally for years.