summaryrefslogtreecommitdiffstats
path: root/tools/tools/vt/keymaps/convert-keymap.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/tools/vt/keymaps/convert-keymap.pl')
-rwxr-xr-xtools/tools/vt/keymaps/convert-keymap.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/tools/vt/keymaps/convert-keymap.pl b/tools/tools/vt/keymaps/convert-keymap.pl
index 778ae10..9c7f3ed 100755
--- a/tools/tools/vt/keymaps/convert-keymap.pl
+++ b/tools/tools/vt/keymaps/convert-keymap.pl
@@ -7,7 +7,7 @@ use strict;
use utf8;
# command line parsing
-die "Usage: $0 filename.kbd CHARSET [EURO]"
+die "Usage: $0 filename.kbd charset [EURO|YEN]\n"
unless ($ARGV[1]);
my $inputfile = shift; # first command argument
@@ -60,8 +60,8 @@ sub local_to_UCS_code
$ucs_char = 0xa5 # replace with Jap. Yen character on PC kbd
if $ucs_char == ord('\\') and $use_yen and $current_scancode == 125;
- $ucs_char = 0xa5 # replace with Jap. Yen character on PC98x1 kbd
- if $ucs_char == ord('\\') and $use_yen and $current_scancode == 13;
+# $ucs_char = 0xa5 # replace with Jap. Yen character on PC98x1 kbd
+# if $ucs_char == ord('\\') and $use_yen and $current_scancode == 13;
return prettyprint_token($ucs_char);
}
OpenPOWER on IntegriCloud