From cb93b86ede546ed8fafffdd11cb110333c3e0e47 Mon Sep 17 00:00:00 2001 From: uqs Date: Wed, 2 Mar 2011 21:59:42 +0000 Subject: Unbreak .Aq for non-ASCII output like -Tps or -Tutf8. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit groff will try to produce fancy angle brackets like Foo ⟨foo@FreeBSD.org⟩ This is nice and well, but no email client will understand them. For ease of copy&paste keep the one-true pair of brackets 0x3c/0x3e. See: RFC 822, RFC 2822 PR: gnu/154822 Submitted by: Dominic Fandrey MFC after: 2 weeks --- contrib/groff/tmac/doc.tmac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'contrib/groff') diff --git a/contrib/groff/tmac/doc.tmac b/contrib/groff/tmac/doc.tmac index 017835e..7bdbf32 100644 --- a/contrib/groff/tmac/doc.tmac +++ b/contrib/groff/tmac/doc.tmac @@ -1197,8 +1197,8 @@ . if !\n[doc-arg-limit] \ . ds doc-macro-name Aq . -. ds doc-quote-left \[la] -. ds doc-quote-right \[ra] +. ds doc-quote-left < +. ds doc-quote-right > . . doc-enclose-string \$@ .. -- cgit v1.1