diff options
| author | YAMAMOTO Mitsuharu | 2006-05-27 08:46:03 +0000 |
|---|---|---|
| committer | YAMAMOTO Mitsuharu | 2006-05-27 08:46:03 +0000 |
| commit | 412f3f1859b20e13d0d16f55852975c7ed74fa53 (patch) | |
| tree | 1b35b3f7fa35a7e0459f96c9e32df7bb5b84d86a /src/macselect.c | |
| parent | 2a7ee2b3492bb0513951fafaa680e867270051bb (diff) | |
| download | emacs-412f3f1859b20e13d0d16f55852975c7ed74fa53.tar.gz emacs-412f3f1859b20e13d0d16f55852975c7ed74fa53.zip | |
(mac_handle_apple_event): Return
errAEEventNotHandled if key binding is not found.
Diffstat (limited to 'src/macselect.c')
| -rw-r--r-- | src/macselect.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/macselect.c b/src/macselect.c index 40a3db9ca08..3afea1e9813 100644 --- a/src/macselect.c +++ b/src/macselect.c | |||
| @@ -1159,6 +1159,8 @@ mac_handle_apple_event (apple_event, reply, refcon) | |||
| 1159 | err = mac_handle_apple_event_1 (class_key, id_key, | 1159 | err = mac_handle_apple_event_1 (class_key, id_key, |
| 1160 | apple_event, reply); | 1160 | apple_event, reply); |
| 1161 | } | 1161 | } |
| 1162 | else | ||
| 1163 | err = errAEEventNotHandled; | ||
| 1162 | } | 1164 | } |
| 1163 | if (err == noErr) | 1165 | if (err == noErr) |
| 1164 | return noErr; | 1166 | return noErr; |