texi2pod.pl: Convert two single quotes or two backquotes to double quotes.

* texi2pod.pl: Convert two single quotes or two backquotes to
	double quotes.

From-SVN: r105758
This commit is contained in:
Bob Wilson 2005-10-21 17:54:27 +00:00 committed by Bob Wilson
parent 6568f34b01
commit 0928f4059f
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2005-10-21 Bob Wilson <bob.wilson@acm.org>
* texi2pod.pl: Convert two single quotes or two backquotes to
double quotes.
2005-08-23 Ben Elliston <bje@au.ibm.com> 2005-08-23 Ben Elliston <bje@au.ibm.com>
* gcc_update: Update dependencies for libjava/aclocal.m4. * gcc_update: Update dependencies for libjava/aclocal.m4.

View File

@ -352,6 +352,10 @@ sub postprocess
# keep references of the form @ref{...}, print them bold # keep references of the form @ref{...}, print them bold
s/\@(?:ref)\{([^\}]*)\}/B<$1>/g; s/\@(?:ref)\{([^\}]*)\}/B<$1>/g;
# Change double single quotes to double quotes.
s/''/"/g;
s/``/"/g;
# Cross references are thrown away, as are @noindent and @refill. # Cross references are thrown away, as are @noindent and @refill.
# (@noindent is impossible in .pod, and @refill is unnecessary.) # (@noindent is impossible in .pod, and @refill is unnecessary.)
# @* is also impossible in .pod; we discard it and any newline that # @* is also impossible in .pod; we discard it and any newline that