From: Paul Eggert Date: Wed, 27 Mar 2013 05:13:31 +0000 (-0700) Subject: * configure.ac (HAVE_XKBGETKEYBOARD): Remove; subsumed by HAVE_XKB. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~2026^2~526^2~77 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=afeee3e5783916f2860d1ab30b17d89b11abccb7;p=emacs.git * configure.ac (HAVE_XKBGETKEYBOARD): Remove; subsumed by HAVE_XKB. All uses changed. --- diff --git a/ChangeLog b/ChangeLog index 500c85d2350..d245f6e2f9b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-03-27 Paul Eggert + + * configure.ac (HAVE_XKBGETKEYBOARD): Remove. + Subsumed by HAVE_XKB. All uses changed. + 2013-03-27 Aidan Gauland #include #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 }