From fb1f42cbeedcec6290c9ef0b2d25156db5ddc586 Mon Sep 17 00:00:00 2001 From: Fred Kiefer Date: Mon, 28 Nov 2011 17:00:50 +0000 Subject: [PATCH] Revert change to use AltGr as Alt key. You may still get the same result by setting a user default. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@34225 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 6 ++++++ Documentation/Back/DefaultsSummary.gsdoc | 2 +- Source/x11/XGServerEvent.m | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index ee64f42..9c0f45d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2011-11-28 Fred Kiefer + + * Source/x11/XGServerEvent.m (initialize_keyboard): Don't use + XK_ISO_Level3_Shift as second alternate key. + * Documentation/Back/DefaultsSummary.gsdoc: Document this mapping. + 2011-11-07 Fred Kiefer * Source/x11/XGGLFormat.m (-assembleGLXAttributes:): Use diff --git a/Documentation/Back/DefaultsSummary.gsdoc b/Documentation/Back/DefaultsSummary.gsdoc index 01746df..0bcc627 100644 --- a/Documentation/Back/DefaultsSummary.gsdoc +++ b/Documentation/Back/DefaultsSummary.gsdoc @@ -170,7 +170,7 @@ Alt_L NoSymbol Alt_R - ISO_Level3_Shift + NoSymbol Help Super_L diff --git a/Source/x11/XGServerEvent.m b/Source/x11/XGServerEvent.m index cb8dbb8..cd76347 100644 --- a/Source/x11/XGServerEvent.m +++ b/Source/x11/XGServerEvent.m @@ -1913,7 +1913,7 @@ initialize_keyboard (void) _alt_keysyms[1] = key_sym_from_defaults(display, defaults, @"GSSecondAlternateKey", - XK_ISO_Level3_Shift); + NoSymbol); if (_alt_keysyms[0] == _alt_keysyms[1]) _alt_keysyms[1] = NoSymbol;