This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Generate Errno and Pod::Functions with deterministic order.
[perl5.git] / ext / Pod-Functions / Functions_pm.PL
index 0d38aef..7cf0b51 100644 (file)
@@ -198,7 +198,7 @@ L<perlfunc/"Perl Functions by Category"> section.
 
 =cut
 
-our $VERSION = '1.06';
+our $VERSION = '1.07';
 
 require Exporter;
 
@@ -265,7 +265,7 @@ foreach my $func (sort_funcs(keys %Flavor)) {
     my $desc = $Flavor{$func};
     die "No types listed for $func" unless $Type{$func};
     next if $Omit{$func};
-    print $fh join("\t", $func, @{$Type{$func}}, $desc), "\n";
+    print $fh join("\t", $func, (sort @{$Type{$func}}), $desc), "\n";
 }
 
 close $fh or die "Can't close '$temp': $!";