summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authoruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>2015-08-04 16:15:45 +0000
committeruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>2015-08-04 16:15:45 +0000
commit67b56c905078d49d3e4028085e5cb1e1fb87a8aa (patch)
tree622b415d77c3a0f57e62e6e52bae22a1e81cb77b /contrib
parent2f508a78310caab123e9794d3dcfe41f2769449b (diff)
downloadgcc-67b56c905078d49d3e4028085e5cb1e1fb87a8aa.tar.gz
* texi2pod.pl: Escape braces in regexp involving @strong{...}.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@226585 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib')
-rw-r--r--contrib/ChangeLog16
-rwxr-xr-xcontrib/texi2pod.pl2
2 files changed, 11 insertions, 7 deletions
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 <ubizjak@gmail.com>
+
+ * texi2pod.pl: Escape braces in regexp involving @strong{...}.
+
2015-07-15 Tom de Vries <tom@codesourcery.com>
* check_GNU_style.sh (cat_with_prefix): Fix quoting.
@@ -140,7 +144,7 @@
2014-11-11 Marat Zakirov <m.zakirov@samsung.com>
- * mklog: Symbol '}' stops search for changes.
+ * mklog: Symbol '}' stops search for changes.
2014-11-11 Tobias Burnus <burnus@net-b.de>
@@ -148,8 +152,8 @@
2014-11-07 Marat Zakirov <m.zakirov@samsung.com>
- * mklog: Always doubt in functions.
- Add EOF protection.
+ * mklog: Always doubt in functions.
+ Add EOF protection.
2014-10-31 Jan-Benedict Glaw <jbglaw@lug-owl.de>
@@ -554,7 +558,7 @@
2012-05-31 Marek Polacek <polacek@redhat.com>
- * mklog: Prevent printing three spaces after the date.
+ * mklog: Prevent printing three spaces after the date.
2012-06-04 Diego Novillo <dnovillo@google.com>
@@ -821,8 +825,8 @@
2010-07-02 Iain Sandoe <iains@gcc.gnu.org>
- * 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 <aoliva@redhat.com>
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";