diff options
| author | YAMAMOTO Mitsuharu | 2006-05-05 06:43:50 +0000 |
|---|---|---|
| committer | YAMAMOTO Mitsuharu | 2006-05-05 06:43:50 +0000 |
| commit | 2e1df0e6b91a2491a0c0ac0e8132f4958384650c (patch) | |
| tree | ca3bfbf0e0b2a93edc752605984190e5e879e712 /src | |
| parent | 6e53dc956bc35adb73dfe6a1e2839a606b768e14 (diff) | |
| download | emacs-2e1df0e6b91a2491a0c0ac0e8132f4958384650c.tar.gz emacs-2e1df0e6b91a2491a0c0ac0e8132f4958384650c.zip | |
(make_lispy_event) [MAC_OS]: Get Apple event info from event->arg.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 1aca0127763..30b06ef38fc 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -5881,8 +5881,7 @@ make_lispy_event (event) | |||
| 5881 | spec[1] = event->y; | 5881 | spec[1] = event->y; |
| 5882 | return Fcons (Qmac_apple_event, | 5882 | return Fcons (Qmac_apple_event, |
| 5883 | Fcons (Fvector (2, spec), | 5883 | Fcons (Fvector (2, spec), |
| 5884 | Fcons (mac_make_lispy_event_code (event->code), | 5884 | Fcons (event->arg, Qnil))); |
| 5885 | Qnil))); | ||
| 5886 | } | 5885 | } |
| 5887 | #endif | 5886 | #endif |
| 5888 | 5887 | ||