summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>2001-01-24 19:47:47 +0000
committerjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>2001-01-24 19:47:47 +0000
commit00984411a15dfedd909eeec3bc182d8ca0794be6 (patch)
tree79ac8d91dacc854cf5720df755fe7a26be2ae951 /contrib
parent74d8ddb197ed336dd3d899794db2801f4dd0b917 (diff)
downloadgcc-00984411a15dfedd909eeec3bc182d8ca0794be6.tar.gz
contrib:
* texi2pod.pl: Handle "\,". gcc: * gcc.1, cpp.1: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39244 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib')
-rw-r--r--contrib/ChangeLog4
-rwxr-xr-xcontrib/texi2pod.pl1
2 files changed, 5 insertions, 0 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog
index 73736fd69cf..9ed5e31b0e3 100644
--- a/contrib/ChangeLog
+++ b/contrib/ChangeLog
@@ -1,3 +1,7 @@
+2001-01-24 Joseph S. Myers <jsm28@cam.ac.uk>
+
+ * texi2pod.pl: Handle "\,".
+
2001-01-15 Joseph S. Myers <jsm28@cam.ac.uk>
* texi2pod.pl: Fix regular expression for @r to avoid exponential
diff --git a/contrib/texi2pod.pl b/contrib/texi2pod.pl
index 964c033df5e..a58bca08012 100755
--- a/contrib/texi2pod.pl
+++ b/contrib/texi2pod.pl
@@ -144,6 +144,7 @@ while(<STDIN>)
s/\@TeX\{\}/TeX/g;
s/\@pounds\{\}/\#/g;
s/\@minus(?:\{\})?/-/g;
+ s/\\,/,/g;
# Now the ones that have to be replaced by special escapes
# (which will be turned back into text by unmunge())