]> granicus.if.org Git - python/commitdiff
avoid stripping space after indexing macros
authorFred Drake <fdrake@acm.org>
Thu, 8 Apr 2004 15:30:12 +0000 (15:30 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 8 Apr 2004 15:30:12 +0000 (15:30 +0000)
Doc/perl/python.perl

index c4bd4005e5e982cfd4a47bc27eee8d00a6799747..d2466b1cd5f8968fa1d06570bdbcbb3484547063 100644 (file)
@@ -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</a>" . $_;
 }