mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-22 04:47:34 +00:00
(make_lispy_event): If the position is not in a window,
at least pass along the frame it is in.
This commit is contained in:
parent
44a4a59b60
commit
78ced549ab
1 changed files with 4 additions and 1 deletions
|
|
@ -2675,7 +2675,10 @@ make_lispy_event (event)
|
|||
window = window_from_coordinates (f, column, row, &part);
|
||||
|
||||
if (XTYPE (window) != Lisp_Window)
|
||||
posn = Qnil;
|
||||
{
|
||||
window = event->frame_or_window;
|
||||
posn = Qnil;
|
||||
}
|
||||
else
|
||||
{
|
||||
int pixcolumn, pixrow;
|
||||
|
|
|
|||
Loading…
Reference in a new issue