diff options
author | Joseph Myers <jsm28@cam.ac.uk> | 2001-01-24 19:47:47 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2001-01-24 19:47:47 +0000 |
commit | 445c435a52d25ed61ed9698e56d09309c5d949c6 (patch) | |
tree | 79ac8d91dacc854cf5720df755fe7a26be2ae951 /contrib | |
parent | c347e89206c3ab7c8273182339c061a2d849ed23 (diff) | |
download | gcc-445c435a52d25ed61ed9698e56d09309c5d949c6.tar.gz |
texi2pod.pl: Handle "\,".
contrib:
* texi2pod.pl: Handle "\,".
gcc:
* gcc.1, cpp.1: Regenerate.
From-SVN: r39244
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/ChangeLog | 4 | ||||
-rwxr-xr-x | contrib/texi2pod.pl | 1 |
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()) |