diff options
author | Daniel P. Berrange <berrange@redhat.com> | 2011-04-14 15:12:34 +0100 |
---|---|---|
committer | Christophe Fergeau <cfergeau@redhat.com> | 2011-05-23 18:13:51 +0200 |
commit | 066fa96e0f2f39d0be8bf3a3bd1bf036fe14e779 (patch) | |
tree | 3448b5cc2f4cea92660e0b1d8a418b9e4d124d10 /gtk/keymaps.csv | |
parent | 1bb8c375a9156be1994669f0694681010e9c04a0 (diff) |
Fix missing OS-X keymapping for letter 'A'
The keymap-gen.pl script was not correctly distinguishing
keycodes with a value of '0', from undefined keycodes. All
were skipped. This meant that the mapping for OS-X ANSI_A
key was lost (since it has value 0).
For similar reasons the XQuartz mapping for the letter A
was also lost.
* src/keymap-gen.pl: Fix handling of 0 vs undef for keycodes
* src/keymaps.csv: Remove bogus 0x0 entry in OS-X keymap
Diffstat (limited to 'gtk/keymaps.csv')
-rw-r--r-- | gtk/keymaps.csv | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/keymaps.csv b/gtk/keymaps.csv index e18f794..59e3bba 100644 --- a/gtk/keymaps.csv +++ b/gtk/keymaps.csv @@ -1,5 +1,5 @@ "Linux Name","Linux Keycode","OS-X Name","OS-X Keycode","AT set1 keycode","AT set2 keycode","AT set3 keycode",XT,"XT KBD","USB Keycodes","Win32 Name","Win32 Keycode","Xwin XT","Xfree86 KBD XT" -KEY_RESERVED,0,,0x0,,,,,,,,,, +KEY_RESERVED,0,,,,,,,,,,,, KEY_ESC,1,Escape,0x35,1,118,8,1,1,41,VK_ESCAPE,0x1b,1,1 KEY_1,2,ANSI_1,0x12,2,22,22,2,2,30,VK_1,0x31,2,2 KEY_2,3,ANSI_2,0x13,3,30,30,3,3,31,VK_2,0x32,3,3 |