aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32term.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/w32term.c')
-rw-r--r--src/w32term.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/w32term.c b/src/w32term.c
index e692d9df475..ce28e05a45b 100644
--- a/src/w32term.c
+++ b/src/w32term.c
@@ -220,10 +220,6 @@ static void w32fullscreen_hook (struct frame *);
220static void x_check_font (struct frame *, struct font *); 220static void x_check_font (struct frame *, struct font *);
221#endif 221#endif
222 222
223static Lisp_Object Qvendor_specific_keysyms;
224static Lisp_Object Qadded, Qremoved, Qmodified;
225static Lisp_Object Qrenamed_from, Qrenamed_to;
226
227 223
228/*********************************************************************** 224/***********************************************************************
229 Debugging 225 Debugging
@@ -3251,12 +3247,11 @@ queue_notifications (struct input_event *event, W32Msg *msg, struct frame *f,
3251 Lisp_Object action = lispy_file_action (fni->Action); 3247 Lisp_Object action = lispy_file_action (fni->Action);
3252 3248
3253 event->kind = FILE_NOTIFY_EVENT; 3249 event->kind = FILE_NOTIFY_EVENT;
3254 event->code
3255 = (ptrdiff_t)XINT (XIL ((EMACS_INT)notifications_desc));
3256 event->timestamp = msg->msg.time; 3250 event->timestamp = msg->msg.time;
3257 event->modifiers = 0; 3251 event->modifiers = 0;
3258 event->frame_or_window = callback; 3252 event->frame_or_window = callback;
3259 event->arg = Fcons (action, fname); 3253 event->arg = list3 (make_pointer_integer (notifications_desc),
3254 action, fname);
3260 kbd_buffer_store_event (event); 3255 kbd_buffer_store_event (event);
3261 (*evcount)++; 3256 (*evcount)++;
3262 3257