From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on inbox.vuxu.org X-Spam-Level: * X-Spam-Status: No, score=1.3 required=5.0 tests=RDNS_NONE,UNPARSEABLE_RELAY autolearn=no autolearn_force=no version=3.4.2 Received: (qmail 28998 invoked from network); 21 Mar 2020 00:25:51 -0000 Received: from unknown (HELO mandoc.bsd.lv) (66.111.2.12) by inbox.vuxu.org with ESMTP; 21 Mar 2020 00:25:51 -0000 Received: from fantadrom.bsd.lv (localhost [127.0.0.1]) by mandoc.bsd.lv (OpenSMTPD) with ESMTP id ba3eabe5 for ; Fri, 20 Mar 2020 19:25:50 -0500 (EST) Received: from localhost (mandoc.bsd.lv [local]) by mandoc.bsd.lv (OpenSMTPD) with ESMTPA id cc46f177 for ; Fri, 20 Mar 2020 19:25:50 -0500 (EST) Date: Fri, 20 Mar 2020 19:25:50 -0500 (EST) X-Mailinglist: mandoc-source Reply-To: source@mandoc.bsd.lv MIME-Version: 1.0 From: schwarze@mandoc.bsd.lv To: source@mandoc.bsd.lv Subject: mandoc: test skipping of initial hyphens and minus signs in automatic X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Message-ID: <11ff17a0241cc847@mandoc.bsd.lv> Log Message: ----------- test skipping of initial hyphens and minus signs in automatic tags; related to tags.c rev. 1.30 Modified Files: -------------- mandoc/regress/mdoc/Cm: tag.in tag.out_ascii tag.out_html tag.out_markdown tag.out_tag Revision Data ------------- Index: tag.out_markdown =================================================================== RCS file: /home/cvs/mandoc/mandoc/regress/mdoc/Cm/tag.out_markdown,v retrieving revision 1.1 retrieving revision 1.2 diff -Lregress/mdoc/Cm/tag.out_markdown -Lregress/mdoc/Cm/tag.out_markdown -u -p -r1.1 -r1.2 --- regress/mdoc/Cm/tag.out_markdown +++ regress/mdoc/Cm/tag.out_markdown @@ -16,8 +16,20 @@ BEGINTEST > text +**-hyphen** + +> text + +**-minus-sign** + +> text + +**\backslash** + +> text + **four** ENDTEST -OpenBSD - March 13, 2020 +OpenBSD - March 21, 2020 Index: tag.out_html =================================================================== RCS file: /home/cvs/mandoc/mandoc/regress/mdoc/Cm/tag.out_html,v retrieving revision 1.1 retrieving revision 1.2 diff -Lregress/mdoc/Cm/tag.out_html -Lregress/mdoc/Cm/tag.out_html -u -p -r1.1 -r1.2 --- regress/mdoc/Cm/tag.out_html +++ regress/mdoc/Cm/tag.out_html @@ -5,5 +5,11 @@
text
text
+
+
text
+
+
text
+
+
text
Index: tag.out_ascii =================================================================== RCS file: /home/cvs/mandoc/mandoc/regress/mdoc/Cm/tag.out_ascii,v retrieving revision 1.1 retrieving revision 1.2 diff -Lregress/mdoc/Cm/tag.out_ascii -Lregress/mdoc/Cm/tag.out_ascii -u -p -r1.1 -r1.2 --- regress/mdoc/Cm/tag.out_ascii +++ regress/mdoc/Cm/tag.out_ascii @@ -10,8 +10,17 @@ DDEESSCCRRIIPPTTIIOONN text tthhrreeee text + + --hhyypphheenn + text + + --mmiinnuuss--ssiiggnn + text + + \\bbaacckkssllaasshh + text ffoouurr ENDTEST -OpenBSD March 13, 2020 OpenBSD +OpenBSD March 21, 2020 OpenBSD Index: tag.in =================================================================== RCS file: /home/cvs/mandoc/mandoc/regress/mdoc/Cm/tag.in,v retrieving revision 1.1 retrieving revision 1.2 diff -Lregress/mdoc/Cm/tag.in -Lregress/mdoc/Cm/tag.in -u -p -r1.1 -r1.2 --- regress/mdoc/Cm/tag.in +++ regress/mdoc/Cm/tag.in @@ -1,4 +1,4 @@ -.\" $OpenBSD: tag.in,v 1.1 2020/03/13 00:31:05 schwarze Exp $ +.\" $OpenBSD: tag.in,v 1.2 2020/03/21 00:20:38 schwarze Exp $ .Dd $Mdocdate$ .Dt CM-TAG 1 .Os @@ -8,11 +8,17 @@ .Sh DESCRIPTION BEGINTEST .Bl -tag -width Ds -.It Cm one | two +.It Cm one | \&two text .It Xo .Cm three .Xc +text +.It Cm -hyphen +text +.It Cm \-minus\-sign +text +.It Cm \ebackslash text .El .Tg Index: tag.out_tag =================================================================== RCS file: /home/cvs/mandoc/mandoc/regress/mdoc/Cm/tag.out_tag,v retrieving revision 1.1 retrieving revision 1.2 diff -Lregress/mdoc/Cm/tag.out_tag -Lregress/mdoc/Cm/tag.out_tag -u -p -r1.1 -r1.2 --- regress/mdoc/Cm/tag.out_tag +++ regress/mdoc/Cm/tag.out_tag @@ -1,4 +1,7 @@ one 9 two 9 three 12 -four 13 +hyphen 14 +minus 17 +backslash 20 +four 22 -- To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv