From f171ad9d994c87441a7a9c7f458b38ad38a7bc79 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Wed, 13 Mar 2002 02:44:50 +0000 Subject: 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). --- Doc/perl/python.perl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 8968df3..332f518 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]; } -- cgit v0.12