From 00cff0a110e4f5294d56edaf80ac3b1bfa629fc0 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Mitsuharu Date: Mon, 19 Dec 2005 08:31:23 +0000 Subject: [PATCH] (construct_drag_n_drop): Drag-and-drop items are now stored in member `args' of struct input_event. --- src/w32term.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/w32term.c b/src/w32term.c index dcb56de911f..7d56fbbb42b 100644 --- a/src/w32term.c +++ b/src/w32term.c @@ -3187,8 +3187,8 @@ construct_drag_n_drop (result, msg, f) DragFinish (hdrop); XSETFRAME (frame, f); - result->frame_or_window = Fcons (frame, files); - result->arg = Qnil; + result->frame_or_window = frame; + result->arg = files; return Qnil; } -- 2.39.5