From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 105600 invoked by alias); 7 Aug 2015 06:39:57 -0000 Mailing-List: contact java-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: java-patches-owner@gcc.gnu.org Received: (qmail 105577 invoked by uid 89); 7 Aug 2015 06:39:56 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: mail-ob0-f180.google.com Received: from mail-ob0-f180.google.com (HELO mail-ob0-f180.google.com) (209.85.214.180) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Fri, 07 Aug 2015 06:39:55 +0000 Received: by obnw1 with SMTP id w1so72652773obn.3; Thu, 06 Aug 2015 23:39:53 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.60.69.39 with SMTP id b7mr5112344oeu.51.1438929593083; Thu, 06 Aug 2015 23:39:53 -0700 (PDT) Received: by 10.60.58.41 with HTTP; Thu, 6 Aug 2015 23:39:53 -0700 (PDT) Date: Fri, 07 Aug 2015 06:39:00 -0000 Message-ID: Subject: [PATCH, java]: texi2pod.pl: Escape braces in regexp involving @strong{...} From: Uros Bizjak To: "gcc-patches@gcc.gnu.org" Cc: java-patches@gcc.gnu.org Content-Type: text/plain; charset=UTF-8 X-SW-Source: 2015-q3/txt/msg00000.txt.bz2 2015-08-07 Uros Bizjak * doc/texi2pod.pl: Escape braces in regexp involving @strong{...}. Bootstrapped on fedora 22 and committed to mainline SVN. Uros. Index: doc/texi2pod.pl =================================================================== --- doc/texi2pod.pl (revision 226670) +++ doc/texi2pod.pl (working copy) @@ -311,7 +311,7 @@ @columns = (); for $column (split (/\s*\@tab\s*/, $1)) { # @strong{...} is used a @headitem work-alike - $column =~ s/^\@strong{(.*)}$/$1/; + $column =~ s/^\@strong\{(.*)\}$/$1/; push @columns, $column; } $_ = "\n=item ".join (" : ", @columns)."\n";