From: Fred Drake Date: Wed, 13 Mar 2002 02:44:50 +0000 (+0000) Subject: Change the way \textasciitilde is implemented so it works more consistently X-Git-Tag: v2.3c1~6507 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f171ad9d994c87441a7a9c7f458b38ad38a7bc79;p=python 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 8968df36ab..332f518666 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_textgreater{ '>' . @_[0]; }