aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/regress/tbl/layout/Makefile
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2017-06-16 20:01:06 +0000
committerIngo Schwarze <schwarze@openbsd.org>2017-06-16 20:01:06 +0000
commit80f6fa645b8fb17f3cb7524cefc92cdc4d445dfd (patch)
tree120f5e368b1cfbedab1b33862de38e2da5dfcd56 /regress/tbl/layout/Makefile
parent29faaf9040c5e238e8b14faf2d795d1cda4b2edc (diff)
downloadmandoc-80f6fa645b8fb17f3cb7524cefc92cdc4d445dfd.tar.gz
mandoc-80f6fa645b8fb17f3cb7524cefc92cdc4d445dfd.tar.zst
mandoc-80f6fa645b8fb17f3cb7524cefc92cdc4d445dfd.zip
Multiple tbl(7) improvements:
* Do not discard data that lacks a matching layout cell but remains within the number of columns of the table as a whole. * Do not insert dummy data rows for any layout row starting with a horizontal line, but only for layout rows that would discard all the data on a matching non-empty data row. * Print horizontal lines specified in the layout even if there is no matching data cell. * Improve the logic for extending vertical lines to adjacent rows, for choosing cross marks versus line segments, and some related details.
Diffstat (limited to 'regress/tbl/layout/Makefile')
-rw-r--r--regress/tbl/layout/Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/regress/tbl/layout/Makefile b/regress/tbl/layout/Makefile
index 9ad5d7f9..9cc65754 100644
--- a/regress/tbl/layout/Makefile
+++ b/regress/tbl/layout/Makefile
@@ -1,12 +1,15 @@
# $OpenBSD: Makefile,v 1.2 2015/01/30 00:27:09 schwarze Exp $
-REGRESS_TARGETS = center complex empty emptyline numbers span
+REGRESS_TARGETS = center complex empty emptyline
+REGRESS_TARGETS += lines lines-nogroff numbers span
LINT_TARGETS = complex empty
-# groff-1.22.3 defect:
+# groff-1.22.3 defects:
# - When the layout is completely empty,
# GNU eqn produces no output whatsoever for the whole table.
+# - When there is no horizontal line at the top,
+# vertical lines extend beyond the top of the table.
-SKIP_GROFF = empty
+SKIP_GROFF = empty lines-nogroff
.include <bsd.regress.mk>