From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3956 invoked by alias); 16 Sep 2019 22:04:23 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 3948 invoked by uid 89); 16 Sep 2019 22:04:23 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 spammy=UD:pl X-HELO: mailrelay1-2.pub.mailoutpod1-cph3.one.com Received: from mailrelay1-2.pub.mailoutpod1-cph3.one.com (HELO mailrelay1-2.pub.mailoutpod1-cph3.one.com) (46.30.212.0) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 16 Sep 2019 22:04:21 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bordum.dk; s=20140924; h=message-id:to:from:subject:date:content-type:content-transfer-encoding:from; bh=xs0I3AH6O3YCMsB/yzJ1+iC1HlD6rhA1v1a9PA8GNOs=; b=RcXvXItd+/SM30QLYJFXlC1CPSomuAuKL4nKt+wwbkG0nOT8aFSBs/OToEga1gBOw0JaDFc5ijCAj 0Ma6qGCpHIESq5YXw63DtjoXq5sQTY9jSVAfg7yl21DrvG/KUczxPQjA63z2ZTGq2KegTWCFJ0WhY6 phdpPS6LL/P3We4Y= X-HalOne-Cookie: d9bc0ec6c229ace8a294c80fcc69cc0bf64d4648 X-HalOne-ID: ee3b09e2-d8cd-11e9-aee4-d0431ea8a283 Received: from localhost (unknown [2.104.151.248]) by mailrelay1.pub.mailoutpod1-cph3.one.com (Halon) with ESMTPSA id ee3b09e2-d8cd-11e9-aee4-d0431ea8a283; Mon, 16 Sep 2019 22:04:18 +0000 (UTC) Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Mon, 16 Sep 2019 22:04:00 -0000 Subject: [PATCH 1/2] etc/texi2pod.pl: convert @t{} to C<> From: "Carl Bordum Hansen" To: Message-Id: X-SW-Source: 2019-09/txt/msg00295.txt.bz2 Both are intended to be stylized in a typewriter font. --- I noticed that this was missing when I was looking into the man page rendering issue. etc/texi2pod.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/texi2pod.pl b/etc/texi2pod.pl index b0540338c8..34ba7efd0f 100644 --- a/etc/texi2pod.pl +++ b/etc/texi2pod.pl @@ -375,7 +375,7 @@ sub postprocess # Temporary escape for @r. s/\@r\{([^\}]*)\}/R<$1>/g; s/\@(?:dfn|var|emph|cite|i)\{([^\}]*)\}/I<$1>/g; - s/\@(?:code|kbd)\{([^\}]*)\}/C<$1>/g; + s/\@(?:code|kbd|t)\{([^\}]*)\}/C<$1>/g; s/\@(?:gccoptlist|samp|strong|key|option|env|command|b)\{([^\}]*)\}/B<= $1>/g; s/\@sc\{([^\}]*)\}/\U$1/g; s/\@file\{([^\}]*)\}/F<$1>/g; --=20 2.17.1