From: Uros Bizjak Date: Tue, 4 Aug 2015 16:15:45 +0000 (+0200) Subject: texi2pod.pl: Escape braces in regexp involving @strong{...}. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4b5ed6cf575f29f17bad46f10a7b1c3f4a7bdd08;p=gcc.git texi2pod.pl: Escape braces in regexp involving @strong{...}. * texi2pod.pl: Escape braces in regexp involving @strong{...}. From-SVN: r226585 --- diff --git a/contrib/ChangeLog b/contrib/ChangeLog index cd6e1c52f32..b8581ccd7ee 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2015-08-04 Uros Bizjak + + * texi2pod.pl: Escape braces in regexp involving @strong{...}. + 2015-07-15 Tom de Vries * check_GNU_style.sh (cat_with_prefix): Fix quoting. @@ -140,7 +144,7 @@ 2014-11-11 Marat Zakirov - * mklog: Symbol '}' stops search for changes. + * mklog: Symbol '}' stops search for changes. 2014-11-11 Tobias Burnus @@ -148,8 +152,8 @@ 2014-11-07 Marat Zakirov - * mklog: Always doubt in functions. - Add EOF protection. + * mklog: Always doubt in functions. + Add EOF protection. 2014-10-31 Jan-Benedict Glaw @@ -554,7 +558,7 @@ 2012-05-31 Marek Polacek - * mklog: Prevent printing three spaces after the date. + * mklog: Prevent printing three spaces after the date. 2012-06-04 Diego Novillo @@ -821,8 +825,8 @@ 2010-07-02 Iain Sandoe - * compare-debug (Darwin): Remove '-x' flag from ld-based object - stripping. Add a comment as to why we do it this way. + * compare-debug (Darwin): Remove '-x' flag from ld-based object + stripping. Add a comment as to why we do it this way. 2010-06-20 Alexandre Oliva diff --git a/contrib/texi2pod.pl b/contrib/texi2pod.pl index eba1bcaa3cf..91bdbb5cea9 100755 --- a/contrib/texi2pod.pl +++ b/contrib/texi2pod.pl @@ -316,7 +316,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";