mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-07 04:10:27 -08:00
(make_lispy_event) <mouse-wheel>: Set count to 1
for event-click-count.
This commit is contained in:
parent
77186c6280
commit
406b073da1
1 changed files with 4 additions and 2 deletions
|
|
@ -5285,8 +5285,10 @@ make_lispy_event (event)
|
|||
&mouse_wheel_syms, 1);
|
||||
return Fcons (head,
|
||||
Fcons (position,
|
||||
Fcons (make_number (event->code),
|
||||
Qnil)));
|
||||
/* Insert 1 here so event-click-count works. */
|
||||
Fcons (make_number (1),
|
||||
Fcons (make_number (event->code),
|
||||
Qnil))));
|
||||
}
|
||||
}
|
||||
#endif /* WINDOWSNT */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue