Index: texi2pod.pl =================================================================== RCS file: /cvs/gcc/gcc/contrib/texi2pod.pl,v retrieving revision 1.24 diff -u -r1.24 texi2pod.pl --- texi2pod.pl 15 Aug 2005 00:41:31 -0000 1.24 +++ texi2pod.pl 6 Oct 2005 03:41:06 -0000 @@ -352,6 +352,10 @@ # keep references of the form @ref{...}, print them bold 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. # (@noindent is impossible in .pod, and @refill is unnecessary.) # @* is also impossible in .pod; we discard it and any newline that