+/* Don't synthesize KeyUp events holding down a key and producing
+ KeyDown events with autorepeat. */
+#ifdef HAVE_X11_XKBLIB_H
+bool wxSetDetectableAutoRepeat( bool flag )
+{
+ Bool result;
+ XkbSetDetectableAutoRepeat( GDK_DISPLAY(), flag, &result );
+ return result; /* TRUE if keyboard hardware supports this mode */
+}
+#else
+bool wxSetDetectableAutoRepeat( bool WXUNUSED(flag) )
+{
+ return FALSE;
+}
+#endif
+