mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-26 23:31:55 -08:00
(make_lispy_event): Drag-and-drop items are now
stored in member `args' of struct input_event.
This commit is contained in:
parent
6e1c22fb1c
commit
82de1de962
1 changed files with 2 additions and 8 deletions
|
|
@ -5805,14 +5805,8 @@ make_lispy_event (event)
|
|||
Lisp_Object head, position;
|
||||
Lisp_Object files;
|
||||
|
||||
/* The frame_or_window field should be a cons of the frame in
|
||||
which the event occurred and a list of the filenames
|
||||
dropped. */
|
||||
if (! CONSP (event->frame_or_window))
|
||||
abort ();
|
||||
|
||||
f = XFRAME (XCAR (event->frame_or_window));
|
||||
files = XCDR (event->frame_or_window);
|
||||
f = XFRAME (event->frame_or_window);
|
||||
files = event->arg;
|
||||
|
||||
/* Ignore mouse events that were made on frames that
|
||||
have been deleted. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue