]> git.eshelyaron.com Git - emacs.git/commitdiff
* gtkutil.c (xg_initialize): Set gtk-menu-bar-accel to "" instead
authorJan Djärv <jan.h.d@swipnet.se>
Mon, 26 Aug 2013 15:44:56 +0000 (17:44 +0200)
committerJan Djärv <jan.h.d@swipnet.se>
Mon, 26 Aug 2013 15:44:56 +0000 (17:44 +0200)
of VoidSymbol.

Fixes: debbugs:15154
src/ChangeLog
src/gtkutil.c

index a065a91d32b1218955b39128d68da9e2d9d9253b..5f0bb86c3ee101ed1bd3184b03495275e613e58c 100644 (file)
@@ -1,3 +1,8 @@
+2013-08-26  Jan Djärv  <jan.h.d@swipnet.se>
+
+       * gtkutil.c (xg_initialize): Set gtk-menu-bar-accel to "" instead
+       of VoidSymbol (Bug#15154).
+
 2013-08-26  Dmitry Antipov  <dmantipov@yandex.ru>
 
        * lisp.h (Mouse_HLInfo): Drop set-but-unused members
index 8e255ac4bfb7d76bb2475c967261821e8d1f2707..0f3f5ba58ba41e5a6430cd85511812905346fd73 100644 (file)
@@ -5044,10 +5044,10 @@ xg_initialize (void)
                                           (gdk_display_get_default ()));
   /* Remove F10 as a menu accelerator, it does not mix well with Emacs key
      bindings.  It doesn't seem to be any way to remove properties,
-     so we set it to VoidSymbol which in X means "no key".  */
+     so we set it to "" which in means "no key".  */
   gtk_settings_set_string_property (settings,
                                     "gtk-menu-bar-accel",
-                                    "VoidSymbol",
+                                    "",
                                     EMACS_CLASS);
 
   /* Make GTK text input widgets use Emacs style keybindings.  This is