Mercurial > emacs
comparison src/xselect.c @ 90261:7beb78bc1f8e
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-97
Merge from emacs--cvs-trunk--0
Patches applied:
* emacs--cvs-trunk--0 (patch 616-696)
- Add lisp/mh-e/.arch-inventory
- Update from CVS
- Merge from gnus--rel--5.10
- Update from CVS: lisp/smerge-mode.el: Add 'tools' to file keywords.
- lisp/gnus/ChangeLog: Remove duplicate entry
* gnus--rel--5.10 (patch 147-181)
- Update from CVS
- Merge from emacs--cvs-trunk--0
- Update from CVS: lisp/mml.el (mml-preview): Doc fix.
- Update from CVS: texi/message.texi: Fix default values.
- Update from CVS: texi/gnus.texi (RSS): Addition.
author | Miles Bader <miles@gnu.org> |
---|---|
date | Mon, 16 Jan 2006 08:37:27 +0000 |
parents | 2d92f5c9d6ae 8596872766c6 |
children | c5406394f567 |
comparison
equal
deleted
inserted
replaced
90260:0ca0d9181b5e | 90261:7beb78bc1f8e |
---|---|
2725 event->format, | 2725 event->format, |
2726 size); | 2726 size); |
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; |
2738 } | 2738 } |
2739 | 2739 |