+2013-12-07 Paul Eggert <eggert@cs.ucla.edu>
+
+ Fix minor problems found by static checking.
+ * keyboard.c (poll_for_input_1, input_polling_used):
+ Define only if HAVE_NTGUI.
+ * xmenu.c (popup_activate_callback): Omit unnecessary
+ check against USE_X_TOOLKIT, which must be defined here anyway.
+ * xterm.c, xterm.h (x_dispatch_event) [! (USE_X_TOOLKIT || USE_MOTIF)]:
+ Now static.
+
2013-12-07 Martin Rudalics <rudalics@gmx.at>
* w32term.c (w32_read_socket): Fix int/Lisp_Object type mixup.
static struct atimer *poll_timer;
-/* Poll for input, so that we catch a C-g if it comes in. This
- function is called from x_make_frame_visible, see comment
- there. */
-
+#ifdef HAVE_NTGUI
+/* Poll for input, so that we catch a C-g if it comes in. */
void
poll_for_input_1 (void)
{
&& !waiting_for_input)
gobble_input ();
}
+#endif
/* Timer callback function for poll_timer. TIMER is equal to
poll_timer. */
#endif
}
+#ifdef HAVE_NTGUI
+
/* True if we are using polling to handle input asynchronously. */
bool
return 0;
#endif
}
+#endif
/* Turn off polling. */
popup_activate_callback (Widget widget, LWLIB_ID id, XtPointer client_data)
{
popup_activated_flag = 1;
-#ifdef USE_X_TOOLKIT
x_activate_timeout_atimer ();
-#endif
}
#endif
static int handle_one_xevent (struct x_display_info *,
const XEvent *, int *,
struct input_event *);
+#if ! (defined USE_X_TOOLKIT || defined USE_MOTIF)
+static int x_dispatch_event (XEvent *, Display *);
+#endif
/* Don't declare this _Noreturn because we want no
interference with debugging failing X calls. */
static void x_connection_closed (Display *, const char *);
extern void x_mouse_leave (struct x_display_info *);
#endif
+#if defined USE_X_TOOLKIT || defined USE_MOTIF
extern int x_dispatch_event (XEvent *, Display *);
+#endif
extern int x_x_to_emacs_modifiers (struct x_display_info *, int);
extern int x_display_pixel_height (struct x_display_info *);
extern int x_display_pixel_width (struct x_display_info *);