diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2010-04-13 22:49:48 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2010-04-13 22:49:48 +0000 |
commit | ea6f8db39d8eef9d3d707a8eef5b11166ffe2fc9 (patch) | |
tree | 22b0c000f9fbcb0e40d8fec63454dc04d646b677 /regress/usr.bin/mandoc | |
parent | 9f33d2d9f2bdffce60009b92277b4182920117a0 (diff) |
test handling of multiple .It macros without intervening text;
related to term.c 1.29
Diffstat (limited to 'regress/usr.bin/mandoc')
-rw-r--r-- | regress/usr.bin/mandoc/mdoc/Bl/Makefile | 6 | ||||
-rw-r--r-- | regress/usr.bin/mandoc/mdoc/Bl/multitag.in | 47 |
2 files changed, 50 insertions, 3 deletions
diff --git a/regress/usr.bin/mandoc/mdoc/Bl/Makefile b/regress/usr.bin/mandoc/mdoc/Bl/Makefile index 265e90b1588..7439062b8b4 100644 --- a/regress/usr.bin/mandoc/mdoc/Bl/Makefile +++ b/regress/usr.bin/mandoc/mdoc/Bl/Makefile @@ -1,7 +1,7 @@ -# $OpenBSD: Makefile,v 1.3 2010/04/12 22:57:05 schwarze Exp $ +# $OpenBSD: Makefile,v 1.4 2010/04/13 22:49:47 schwarze Exp $ -REGRESS_TARGETS=tag inset hang diag column nested -GROFF_TARGETS=tag inset hang diag column nested +REGRESS_TARGETS=tag inset hang diag column multitag nested +GROFF_TARGETS=tag inset hang diag column multitag nested REGRESS_TARGETS+=EMULTILIST ENOTYPE REGRESS_SLOW_TARGETS=EMULTILIST diff --git a/regress/usr.bin/mandoc/mdoc/Bl/multitag.in b/regress/usr.bin/mandoc/mdoc/Bl/multitag.in new file mode 100644 index 00000000000..4a1daef5b95 --- /dev/null +++ b/regress/usr.bin/mandoc/mdoc/Bl/multitag.in @@ -0,0 +1,47 @@ +.Dd $Mdocdate: April 13 2010 $ +.Dt BL-MULTITAG 1 +.Os +.Sh NAME +.Nm Bl-multitag +.Nd lists with multiple successive tags +.Sh DESCRIPTION +inset: +.Bl -inset +.It first +.It second +.It third +some text +.It fourth +.It fifth +more text +.El +tag: +.Bl -tag -width Ds +.It first +.It second +.It third +some text +.It fourth +.It fifth +more text +.El +inset compact: +.Bl -inset -compact +.It first +.It second +.It third +some text +.It fourth +.It fifth +more text +.El +tag compact: +.Bl -tag -width Ds -compact +.It first +.It second +.It third +some text +.It fourth +.It fifth +more text +.El |