From 421215b09e3efaf7c76369162bf49ab99181c728 Mon Sep 17 00:00:00 2001 From: wl Date: Fri, 4 Mar 2011 12:38:22 +0000 Subject: =?UTF-8?q?[mdoc]=20Within=20.An,=20.Aq,=20.Ao,=20and=20.Ac=20now?= =?UTF-8?q?=20use=20`<'=20and=20`>'.=20Problem=20reported=20by=20Ulrich=20?= =?UTF-8?q?Sp=C3=B6rlein=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * tmac/doc.tmac (Aq, Ao, Ac): Implement it to follow RFC 822 and RFC 2822. --- tmac/doc.tmac | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) (limited to 'tmac') diff --git a/tmac/doc.tmac b/tmac/doc.tmac index 017835e0..c1c32dc2 100644 --- a/tmac/doc.tmac +++ b/tmac/doc.tmac @@ -1197,8 +1197,14 @@ . if !\n[doc-arg-limit] \ . ds doc-macro-name Aq . -. ds doc-quote-left \[la] -. ds doc-quote-right \[ra] +. ie "\*[doc-macro-name]"An" \{\ +. ds doc-quote-left < +. ds doc-quote-right > +. \} +. el \{\ +. ds doc-quote-left \[la] +. ds doc-quote-right \[ra] +. \} . . doc-enclose-string \$@ .. @@ -1527,7 +1533,10 @@ . if !\n[doc-arg-limit] \ . ds doc-macro-name Ao . -. ds doc-quote-left \[la] +. ie "\*[doc-macro-name]"An" \ +. ds doc-quote-left < +. el \ +. ds doc-quote-left \[la] . . doc-enclose-open \$@ .. @@ -1546,7 +1555,10 @@ . if !\n[doc-arg-limit] \ . ds doc-macro-name Ac . -. ds doc-quote-right \[ra] +. ie "\*[doc-macro-name]"An" \ +. ds doc-quote-right > +. el \ +. ds doc-quote-right \[ra] . . doc-enclose-close \$@ .. -- cgit v1.2.1