From: Fred Drake Date: Thu, 8 Apr 2004 15:46:56 +0000 (+0000) Subject: avoid stripping space after indexing macros X-Git-Tag: v2.3.4c1~71 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=820fd04f8189a1676b3196f540eb22b4278120aa;p=thirdparty%2FPython%2Fcpython.git avoid stripping space after indexing macros --- diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 3930bd58698f..c752040b9b1f 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -574,9 +574,10 @@ sub process_index_macros($$){ &$cmd($ahref); } } - if (/^[ \t\r\n]/) { - $_ = substr($_, 1); - } +# XXX I don't remember why I added this to begin with. +# if (/^[ \t\r\n]/) { +# $_ = substr($_, 1); +# } return "$aname$anchor_invisible_mark" . $_; }