aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu2005-12-19 08:31:33 +0000
committerYAMAMOTO Mitsuharu2005-12-19 08:31:33 +0000
commit862c94ca8e483d0aebcb45f4cae3d59503cf709f (patch)
tree723fc21b26dec91503b005649c24a85df294cd9c /src
parent00cff0a110e4f5294d56edaf80ac3b1bfa629fc0 (diff)
downloademacs-862c94ca8e483d0aebcb45f4cae3d59503cf709f.tar.gz
emacs-862c94ca8e483d0aebcb45f4cae3d59503cf709f.zip
(x_handle_dnd_message): Drag-and-drop items are now
stored in member `args' of struct input_event.
Diffstat (limited to 'src')
-rw-r--r--src/xselect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xselect.c b/src/xselect.c
index 4db86c1cc5a..b41a05825ae 100644
--- a/src/xselect.c
+++ b/src/xselect.c
@@ -2727,11 +2727,11 @@ x_handle_dnd_message (f, event, dpyinfo, bufp)
2727 2727
2728 mouse_position_for_drop (f, &x, &y); 2728 mouse_position_for_drop (f, &x, &y);
2729 bufp->kind = DRAG_N_DROP_EVENT; 2729 bufp->kind = DRAG_N_DROP_EVENT;
2730 bufp->frame_or_window = Fcons (frame, vec); 2730 bufp->frame_or_window = frame;
2731 bufp->timestamp = CurrentTime; 2731 bufp->timestamp = CurrentTime;
2732 bufp->x = make_number (x); 2732 bufp->x = make_number (x);
2733 bufp->y = make_number (y); 2733 bufp->y = make_number (y);
2734 bufp->arg = Qnil; 2734 bufp->arg = vec;
2735 bufp->modifiers = 0; 2735 bufp->modifiers = 0;
2736 2736
2737 return 1; 2737 return 1;