We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b00db4 commit 4d56115Copy full SHA for 4d56115
src/backend/utils/mb/Unicode/UCS_to_most.pl
@@ -54,7 +54,8 @@
54
# make maps for all encodings if not specified
55
my @charsets = (scalar(@ARGV) > 0) ? @ARGV : sort keys(%filename);
56
57
-foreach my $charset (@charsets)
+# the sort is just so that the output is easier to eyeball
58
+foreach my $charset (sort @charsets)
59
{
60
my $mapping = &read_source($filename{$charset});
61
0 commit comments