Fix buglet which generated spurious perl warnings (no effect on generated fonts)

This commit is contained in:
Stefan `Sec` Zehl 2011-05-15 22:33:00 +02:00
parent fe229628b3
commit d3882b0b80
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ sub pk_dedup {
if($echar[$idx-1] eq $echar[$idx]){
my $dl=1;
$dl++ while ($dl<$#echar && $echar[$idx] eq $echar[$idx+$dl]);
$dl++ while ($idx+$dl<$#echar && $echar[$idx] eq $echar[$idx+$dl]);
# print "dupline found\n";
if( $echar[$idx-1]=~ s/01/0[$dl]1/ ){