From: Fred Drake Date: Thu, 8 Apr 2004 15:30:12 +0000 (+0000) Subject: avoid stripping space after indexing macros X-Git-Tag: v2.4a1~518 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=899072ab7166283655812fb0de4dcde52d043b93;p=python avoid stripping space after indexing macros --- diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index c4bd4005e5..d2466b1cd5 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -579,9 +579,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" . $_; }