From: Pavel Janík Date: Fri, 19 Apr 2002 18:59:02 +0000 (+0000) Subject: (note_mode_line_or_margin_highlight): Remove unused variables `row', `i' X-Git-Tag: ttn-vms-21-2-B4~15515 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2a793c0c4c7b8ce5333d560d1ea01114c37842fa;p=emacs.git (note_mode_line_or_margin_highlight): Remove unused variables `row', `i' and `area'. (XTread_socket) : Pass KeyPress events when in menu to toolkit library. --- diff --git a/src/xterm.c b/src/xterm.c index 70b4b37c8b7..25cb21bd95e 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -6810,8 +6810,7 @@ note_mode_line_or_margin_highlight (w, x, y, portion) struct frame *f = XFRAME (w->frame); struct x_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f); Cursor cursor = dpyinfo->vertical_scroll_bar_cursor; - struct glyph_row *row; - int i, area, charpos; + int charpos; Lisp_Object string, help, map, pos; if (portion == 1 || portion == 3) @@ -10406,6 +10405,11 @@ XTread_socket (sd, bufp, numchars, expected) goto OTHER; case KeyPress: + + /* Dispatch KeyPress events when in menu. */ + if (popup_activated_flag) + goto OTHER; + f = x_any_window_to_frame (dpyinfo, event.xkey.window); if (!dpyinfo->mouse_face_hidden && INTEGERP (Vmouse_highlight))