(construct_drag_n_drop): Drag-and-drop items are now

stored in member `args' of struct input_event.
This commit is contained in:
YAMAMOTO Mitsuharu 2005-12-19 08:31:23 +00:00
parent bf0f0659d9
commit 00cff0a110

View file

@ -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;
}