mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-28 15:15:19 +08:00
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:
parent
6568f34b01
commit
0928f4059f
@ -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.
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user