* doc/texi2pod.pl: Escape braces in regexp involving @strong{...}.
authoruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 7 Aug 2015 06:38:07 +0000 (06:38 +0000)
committeruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 7 Aug 2015 06:38:07 +0000 (06:38 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@226714 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 2708b06..c88532c 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 e7b983b..bef5644 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";