diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2017-05-30 16:22:03 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2017-05-30 16:22:03 +0000 |
commit | f9f4c363c58d629451c4b9a44815112814c91e0e (patch) | |
tree | 7ee2addae474eb4c48659e3b3571f23629b43419 /regress/mdoc/Mt | |
parent | debd68a8f3b16460c3f97da77580fc510b61fbb7 (diff) | |
download | mandoc-f9f4c363c58d629451c4b9a44815112814c91e0e.tar.gz |
Macro argument quoting does not prevent recognition of punctuation
and of called macros.
This bug affects almost all macros, and fixing it simplifies the
code. It is amazing that the bogus ARGS_QWORD feature got implemented
in the first place, and then carrier along for more than eight years
without anybody ever noticing that it was pointless.
Reported by Leah Neukirchen <leah at vuxu dot org>, found on Void Linux.
Diffstat (limited to 'regress/mdoc/Mt')
-rw-r--r-- | regress/mdoc/Mt/simple.in | 2 | ||||
-rw-r--r-- | regress/mdoc/Mt/simple.out_ascii | 2 | ||||
-rw-r--r-- | regress/mdoc/Mt/simple.out_markdown | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/regress/mdoc/Mt/simple.in b/regress/mdoc/Mt/simple.in index d9e36c3a..16afb2da 100644 --- a/regress/mdoc/Mt/simple.in +++ b/regress/mdoc/Mt/simple.in @@ -6,7 +6,7 @@ .Nd mailto .Sh DESCRIPTION Please send mail to -.Mt schwarze@openbsd.org . +.Mt schwarze@openbsd.org ";" "Sy" bold . .Pp Do not send mail to .Mt . diff --git a/regress/mdoc/Mt/simple.out_ascii b/regress/mdoc/Mt/simple.out_ascii index 65cde864..7b2ea545 100644 --- a/regress/mdoc/Mt/simple.out_ascii +++ b/regress/mdoc/Mt/simple.out_ascii @@ -4,7 +4,7 @@ NNAAMMEE MMtt--ssiimmppllee - mailto DDEESSCCRRIIPPTTIIOONN - Please send mail to _s_c_h_w_a_r_z_e_@_o_p_e_n_b_s_d_._o_r_g. + Please send mail to _s_c_h_w_a_r_z_e_@_o_p_e_n_b_s_d_._o_r_g; bboolldd. Do not send mail to _~. diff --git a/regress/mdoc/Mt/simple.out_markdown b/regress/mdoc/Mt/simple.out_markdown index 78c21be4..9281fee5 100644 --- a/regress/mdoc/Mt/simple.out_markdown +++ b/regress/mdoc/Mt/simple.out_markdown @@ -7,7 +7,7 @@ MT-SIMPLE(1) - General Commands Manual # DESCRIPTION Please send mail to -[schwarze@openbsd.org](mailto:schwarze@openbsd.org). +[schwarze@openbsd.org](mailto:schwarze@openbsd.org); **bold**. Do not send mail to [~](mailto:~). |