summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-06-28 19:09:07 -0700
committerH. Peter Anvin <hpa@zytor.com>2008-06-28 19:09:07 -0700
commitb1b5f569d5aa4b56f4751e6f345d5b07007a3936 (patch)
tree3f7c5967d7d697d7c41046a209c6034ab04a5a42
parent6a8ac8637c120b2a4ec7cfb702badb5a994b2d71 (diff)
downloadsyslinux-b1b5f569d5aa4b56f4751e6f345d5b07007a3936.tar.gz
cptable.pl: it seems to make more sense to put console first
It seems to make more sense to put the console codepage first, since it is the more significant of the two codepages. It also makes more sense in the from..to sense.
-rwxr-xr-xcodepage/cptable.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/codepage/cptable.pl b/codepage/cptable.pl
index 416e7303..c7e20023 100755
--- a/codepage/cptable.pl
+++ b/codepage/cptable.pl
@@ -5,16 +5,16 @@
# matching.)
#
# Usage:
-# cptable.pl UnicodeData filesystem-cp.txt console-cp.txt output.cp
+# cptable.pl UnicodeData console-cp.txt filesystem-cp.txt output.cp
#
# Note: for the format of the UnicodeData file, see:
# http://www.unicode.org/Public/UNIDATA/UCD.html
#
-($ucd, $cpfs, $cpco, $cpout) = @ARGV;
+($ucd, $cpco, $cpfs, $cpout) = @ARGV;
if (!defined($cpout)) {
- die "Usage: $0 UnicodeData fs-cp.txt console-cp.txt output.cp\n";
+ die "Usage: $0 UnicodeData console-cp.txt fs-cp.txt output.cp\n";
}
%ucase = ();