You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-text/code2html/files/code2html-0.9.1-scalar.patch

21 lines
1.3 KiB

--- a/code2html
+++ b/code2html
@@ -1357,7 +1357,7 @@
my @lines = split ( /\n/, $_[0] );
my $nr = 0;
- my $lengthofnr = length(@lines);
+ my $lengthofnr = length(scalar(@lines));
my $format = qq{<a name="$_[1]line%u">%${lengthofnr}u</a> %s\n} ;
join ('', map ( {$nr++; sprintf ( $format , $nr, $nr, $_ )} @lines));
},
@@ -1367,7 +1367,7 @@
my @lines = split ( /\n/, $_[0] );
my $nr = 0;
- my $lengthofnr = length(@lines);
+ my $lengthofnr = length(scalar(@lines));
my $format = qq{<a name="$_[1]line%u" href="#$_[1]line%u">%$ {lengthofnr}u</a> %s\n};
join ('', map ( {$nr++; sprintf ( $format , $nr, $nr, $nr, $_ )} @lines));
}