texi2pod.pl: Escape braces in regexp involving @strong{...}.
authorUros Bizjak <ubizjak@gmail.com>
Fri, 7 Aug 2015 06:38:07 +0000 (08:38 +0200)
committerUros Bizjak <uros@gcc.gnu.org>
Fri, 7 Aug 2015 06:38:07 +0000 (08:38 +0200)
* doc/texi2pod.pl: Escape braces in regexp involving @strong{...}.

From-SVN: r226714

libjava/classpath/ChangeLog
libjava/classpath/doc/texi2pod.pl

index 2708b063799eb41da1d8122a0f1887cd279e1c3e..c88532c5cc09c07cc780c02d9d2d25891006fe5c 100644 (file)
@@ -1,3 +1,7 @@
+2015-08-07  Uros Bizjak  <ubizjak@gmail.com>
+
+       * doc/texi2pod.pl: Escape braces in regexp involving @strong{...}.
+
 2015-07-24  Michael Darling  <darlingm@gmail.com>
 
        PR other/66259
index e7b983bd2d282c0a46088d065af2d165ee53aa83..bef5644e5a89b644d5baaa35661a60f4038e7ff9 100755 (executable)
@@ -311,7 +311,7 @@ while(<$inf>) {
        @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";