aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorbwilson <bwilson@138bc75d-0d04-0410-961f-82ee72b054a4>2005-10-21 17:54:27 +0000
committerbwilson <bwilson@138bc75d-0d04-0410-961f-82ee72b054a4>2005-10-21 17:54:27 +0000
commit42b9b219483f523f5248e5c187ffdb6fdcaf78d2 (patch)
tree95a89f214c107410f028277eca637a998ae3c094 /contrib
parent04c0bfd0bbd586165a3e552ab4e957c6339c54d5 (diff)
* 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
Diffstat (limited to 'contrib')
-rw-r--r--contrib/ChangeLog5
-rwxr-xr-xcontrib/texi2pod.pl4
2 files changed, 9 insertions, 0 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog
index 6b9a85aa146..012dc7b88be 100644
--- a/contrib/ChangeLog
+++ b/contrib/ChangeLog
@@ -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>
* gcc_update: Update dependencies for libjava/aclocal.m4.
diff --git a/contrib/texi2pod.pl b/contrib/texi2pod.pl
index a22fd4fe692..49953d4f246 100755
--- a/contrib/texi2pod.pl
+++ b/contrib/texi2pod.pl
@@ -352,6 +352,10 @@ sub postprocess
# 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