diff options
author | Fred Drake <fdrake@acm.org> | 1998-11-25 19:28:02 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-11-25 19:28:02 (GMT) |
commit | 4c5e533693be2f1e713542078e9f5a86ec13f065 (patch) | |
tree | 9ebadcec94bef2cdf40b555e526166d342b889f8 | |
parent | d03268feaa76ffb6afd68ca921efdf271bcf5709 (diff) | |
download | cpython-4c5e533693be2f1e713542078e9f5a86ec13f065.zip cpython-4c5e533693be2f1e713542078e9f5a86ec13f065.tar.gz cpython-4c5e533693be2f1e713542078e9f5a86ec13f065.tar.bz2 |
Do the right stuff to convert what was originally \e, \ldots, and ---
in the LaTeX sources.
-rwxr-xr-x | Doc/tools/sgmlconv/fixgenents.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/tools/sgmlconv/fixgenents.sh b/Doc/tools/sgmlconv/fixgenents.sh index 220e356..8d5f121 100755 --- a/Doc/tools/sgmlconv/fixgenents.sh +++ b/Doc/tools/sgmlconv/fixgenents.sh @@ -22,4 +22,7 @@ s|<EOF/>|\&EOF;|g s|<NULL/>|\&NULL;|g s|<POSIX/>|\&POSIX;|g s|<UNIX/>|\&UNIX;|g +s|<e/>|\\|g +s|<ldots/>|\&hellip|g +s|---|\—|g ' || exit $? |