From 820fd04f8189a1676b3196f540eb22b4278120aa Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Thu, 8 Apr 2004 15:46:56 +0000 Subject: [PATCH] avoid stripping space after indexing macros --- Doc/perl/python.perl | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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" . $_; } -- 2.47.3