From: Fred Drake Date: Wed, 13 Mar 2002 02:45:58 +0000 (+0000) Subject: Change the way \textasciitilde is implemented so it works more consistently X-Git-Tag: v2.2.1c1~68 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8e539fc589ce7409ee340cca4b2387e8b9117480;p=thirdparty%2FPython%2Fcpython.git 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). --- diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 3b551390c7e8..176e90bf6bde 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]; }