]> git.eshelyaron.com Git - emacs.git/commitdiff
* configure.ac (HAVE_XKBGETKEYBOARD): Remove; subsumed by HAVE_XKB.
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 27 Mar 2013 05:13:31 +0000 (22:13 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 27 Mar 2013 05:13:31 +0000 (22:13 -0700)
All uses changed.

ChangeLog
admin/CPP-DEFINES
configure.ac
src/xfns.c

index 500c85d2350b5793c4f57c092ff48a5192fa31c1..d245f6e2f9b45d0eba5b669b69c8b1eddd4618f2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-03-27  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * configure.ac (HAVE_XKBGETKEYBOARD): Remove.
+       Subsumed by HAVE_XKB.  All uses changed.
+
 2013-03-27  Aidan Gauland  <aidalgol@no8wireless.co.nz
 
        * lisp/eshell/em-unix.el: Moved su and sudo to...
index c11c3c3b4892786dbf046545c0af2197e76b5184..a89d1764f7bff105a0a65c6e84b2cbd980825dbd 100644 (file)
@@ -377,7 +377,6 @@ HAVE_WS2TCPIP_H
 HAVE_XAW3D
 HAVE_XFT
 HAVE_XIM
-HAVE_XKBGETKEYBOARD
 HAVE_XPM
 HAVE_XRMSETDATABASE
 HAVE_XSCREENNUMBEROFSCREEN
index 1c5c1725dab5a2b4abbe91ee6e81038d4ae8137e..0cff34b8a16669c70ccbaf4273fb802768188003 100644 (file)
@@ -1821,7 +1821,6 @@ if test "${HAVE_X11}" = "yes"; then
        emacs_xkb=yes, emacs_xkb=no)
   AC_MSG_RESULT($emacs_xkb)
   if test $emacs_xkb = yes; then
-    AC_DEFINE(HAVE_XKBGETKEYBOARD, 1, [Define to 1 if you have the XkbGetKeyboard function.])
     AC_DEFINE(HAVE_XKB, 1, [Define to 1 if you have the Xkb extension.])
   fi
 
index a6a179be97d072d934629b9d2f0e647bdc08567f..e24d3981a09068a38753bed911a5d1f2a16f3d2a 100644 (file)
@@ -5591,7 +5591,7 @@ nil, it defaults to the selected frame. */)
                               Keyboard
  ***********************************************************************/
 
-#ifdef HAVE_XKBGETKEYBOARD
+#ifdef HAVE_XKB
 #include <X11/XKBlib.h>
 #include <X11/keysym.h>
 #endif
@@ -5605,7 +5605,9 @@ usual X keysyms.  Value is `lambda' if we cannot determine if both keys are
 present and mapped to the usual X keysyms.  */)
   (Lisp_Object frame)
 {
-#ifdef HAVE_XKBGETKEYBOARD
+#ifndef HAVE_XKB
+  return Qlambda;
+#else
   XkbDescPtr kb;
   struct frame *f = check_x_frame (frame);
   Display *dpy = FRAME_X_DISPLAY (f);
@@ -5683,9 +5685,7 @@ present and mapped to the usual X keysyms.  */)
     }
   unblock_input ();
   return have_keys;
-#else /* not HAVE_XKBGETKEYBOARD */
-  return Qlambda;
-#endif /* not HAVE_XKBGETKEYBOARD */
+#endif
 }