Skip to content
Snippets Groups Projects
Commit 42b9b219 authored by bwilson's avatar bwilson
Browse files

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

	double quotes.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@105758 138bc75d-0d04-0410-961f-82ee72b054a4
parent 04c0bfd0
No related branches found
No related tags found
No related merge requests found
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.
......
...@@ -352,6 +352,10 @@ sub postprocess ...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment