diff options
author | Fred Drake <fdrake@acm.org> | 2002-03-13 02:45:58 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-03-13 02:45:58 (GMT) |
commit | 8e539fc589ce7409ee340cca4b2387e8b9117480 (patch) | |
tree | ab11d69f2463097ccceaef52d6d437e1ab687fca /Doc/perl/python.perl | |
parent | 14f675884aff5be2a7b6af45cd1c9e1656d707be (diff) | |
download | cpython-8e539fc589ce7409ee340cca4b2387e8b9117480.zip cpython-8e539fc589ce7409ee340cca4b2387e8b9117480.tar.gz cpython-8e539fc589ce7409ee340cca4b2387e8b9117480.tar.bz2 |
Change the way \textasciitilde is implemented so it works more consistently
(dropping tildes into data that still goes through LaTeX-like processing is
a bad idea).
Diffstat (limited to 'Doc/perl/python.perl')
-rw-r--r-- | Doc/perl/python.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 3b55139..176e90b 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -85,7 +85,7 @@ sub do_cmd_let{ # the older version of LaTeX2HTML we use doesn't support this, but we use it: -sub do_cmd_textasciitilde{ '~' . @_[0]; } +sub do_cmd_textasciitilde{ '~' . @_[0]; } sub do_cmd_textasciicircum{ '^' . @_[0]; } sub do_cmd_textbar{ '|' . @_[0]; } sub do_cmd_infinity{ '∞' . @_[0]; } |