mirror of git://gcc.gnu.org/git/gcc.git
texi2pod.pl: Escape braces in regexp involving @strong{...}.
* doc/texi2pod.pl: Escape braces in regexp involving @strong{...}.
From-SVN: r226714
This commit is contained in:
parent
971e17ff87
commit
41b122f335
|
|
@ -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>
|
2015-07-24 Michael Darling <darlingm@gmail.com>
|
||||||
|
|
||||||
PR other/66259
|
PR other/66259
|
||||||
|
|
|
||||||
|
|
@ -311,7 +311,7 @@ while(<$inf>) {
|
||||||
@columns = ();
|
@columns = ();
|
||||||
for $column (split (/\s*\@tab\s*/, $1)) {
|
for $column (split (/\s*\@tab\s*/, $1)) {
|
||||||
# @strong{...} is used a @headitem work-alike
|
# @strong{...} is used a @headitem work-alike
|
||||||
$column =~ s/^\@strong{(.*)}$/$1/;
|
$column =~ s/^\@strong\{(.*)\}$/$1/;
|
||||||
push @columns, $column;
|
push @columns, $column;
|
||||||
}
|
}
|
||||||
$_ = "\n=item ".join (" : ", @columns)."\n";
|
$_ = "\n=item ".join (" : ", @columns)."\n";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue