Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 899072a

Browse files
committed
avoid stripping space after indexing macros
1 parent d0c0c41 commit 899072a

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

Doc/perl/python.perl

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -579,9 +579,10 @@ ($$)
579579
&$cmd($ahref);
580580
}
581581
}
582-
if (/^[ \t\r\n]/) {
583-
$_ = substr($_, 1);
584-
}
582+
# XXX I don't remember why I added this to begin with.
583+
# if (/^[ \t\r\n]/) {
584+
# $_ = substr($_, 1);
585+
# }
585586
return "$aname$anchor_invisible_mark</a>" . $_;
586587
}
587588

0 commit comments

Comments
 (0)