projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
77c9267
)
A little more determinacy in our sorting
author
Nicholas Clark
<nick@ccl4.org>
Thu, 20 Jan 2005 13:20:50 +0000
(13:20 +0000)
committer
Nicholas Clark
<nick@ccl4.org>
Thu, 20 Jan 2005 13:20:50 +0000
(13:20 +0000)
p4raw-id: //depot/perl@23835
autodoc.pl
patch
|
blob
|
history
diff --git
a/autodoc.pl
b/autodoc.pl
index c10640835ddadda7e7fd44562c9cdbed279e0689..6126f9ff65a3445df3f68e4901691e6885985057 100644
(file)
--- a/
autodoc.pl
+++ b/
autodoc.pl
@@
-220,7
+220,8
@@
my $key;
for $key (sort { uc($a) cmp uc($b) || $a cmp $b } keys %apidocs) {
my $section = $apidocs{$key};
print DOC "\n=head1 $key\n\n=over 8\n\n";
- for my $key (sort { uc($a) cmp uc($b); } keys %$section) {
+ # Again, fallback for determinacy
+ for my $key (sort { uc($a) cmp uc($b) || $a cmp $b } keys %$section) {
docout(\*DOC, $key, $section->{$key});
}
print DOC "\n=back\n";