X-Git-Url: http://drtracing.org/?a=blobdiff_plain;ds=sidebyside;f=etc%2Ftexi2pod.pl;h=0f465b7c768cb0213a617d47d4151c2a20e05229;hb=8b8c7c9f49992750f66f81b4601d593a3858d98c;hp=cd0ffd9435f735fab6d173716e852ebb74b4aafb;hpb=f5fb44398774242d0431c1f58667d4b227638ca3;p=deliverable%2Fbinutils-gdb.git diff --git a/etc/texi2pod.pl b/etc/texi2pod.pl index cd0ffd9435..0f465b7c76 100644 --- a/etc/texi2pod.pl +++ b/etc/texi2pod.pl @@ -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"; @@ -340,7 +340,7 @@ die "No filename or title\n" unless defined $fn && defined $tl; $sects{NAME} = "$fn \- $tl\n"; $sects{FOOTNOTES} .= "=back\n" if exists $sects{FOOTNOTES}; -for $sect (qw(NAME SYNOPSIS DESCRIPTION OPTIONS ENVIRONMENT FILES +for $sect (qw(NAME SYNOPSIS TARGET DESCRIPTION OPTIONS ENVIRONMENT FILES BUGS NOTES FOOTNOTES SEEALSO AUTHOR COPYRIGHT)) { if(exists $sects{$sect}) { $head = $sect;