diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index d1c3681fdbc..90b83560cf8 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -5285,8 +5285,10 @@ make_lispy_event (event) | |||
| 5285 | &mouse_wheel_syms, 1); | 5285 | &mouse_wheel_syms, 1); |
| 5286 | return Fcons (head, | 5286 | return Fcons (head, |
| 5287 | Fcons (position, | 5287 | Fcons (position, |
| 5288 | Fcons (make_number (event->code), | 5288 | /* Insert 1 here so event-click-count works. */ |
| 5289 | Qnil))); | 5289 | Fcons (make_number (1), |
| 5290 | Fcons (make_number (event->code), | ||
| 5291 | Qnil)))); | ||
| 5290 | } | 5292 | } |
| 5291 | } | 5293 | } |
| 5292 | #endif /* WINDOWSNT */ | 5294 | #endif /* WINDOWSNT */ |