Commit bce1599d authored by Fred Drake's avatar Fred Drake

avoid stripping space after indexing macros

parent 904ce167
...@@ -579,9 +579,10 @@ sub process_index_macros($$){ ...@@ -579,9 +579,10 @@ sub process_index_macros($$){
&$cmd($ahref); &$cmd($ahref);
} }
} }
if (/^[ \t\r\n]/) { # XXX I don't remember why I added this to begin with.
$_ = substr($_, 1); # if (/^[ \t\r\n]/) {
} # $_ = substr($_, 1);
# }
return "$aname$anchor_invisible_mark</a>" . $_; return "$aname$anchor_invisible_mark</a>" . $_;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment