Josip Rodin wrote:
> Actually it's sorted, but with the implied debian- prefix on the names.
> I.e.:
>
> for (sort keys %lists) {
> s/^debian-//;
> print OUT "<option>$_\n";
> }
for (sort map { s/^debian-//; $_ } keys %lists) {
print OUT "<option>$_\n";
}
--
see shy jo

