diff options
| author | Miles Bader | 2006-11-07 23:22:48 +0000 |
|---|---|---|
| committer | Miles Bader | 2006-11-07 23:22:48 +0000 |
| commit | dbc3b08c405a7b1c0ddb0fb0c98164b355802af5 (patch) | |
| tree | 00c6f28244409d14bec11e221fb3c03daef63fc6 /src/macselect.c | |
| parent | bbb6e8f2b6037dc1ee4ddd6cb63a1a6ddb04a591 (diff) | |
| parent | 86cb14475e9e76f0b3323d2e7110a4a2bd310cdb (diff) | |
| download | emacs-dbc3b08c405a7b1c0ddb0fb0c98164b355802af5.tar.gz emacs-dbc3b08c405a7b1c0ddb0fb0c98164b355802af5.zip | |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 490-504)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 161-163)
- Update from CVS
- Merge from emacs--devo--0
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-130
Diffstat (limited to 'src/macselect.c')
| -rw-r--r-- | src/macselect.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/macselect.c b/src/macselect.c index fd72bd3cb14..7a952f88367 100644 --- a/src/macselect.c +++ b/src/macselect.c | |||
| @@ -1616,10 +1616,11 @@ remove_drag_handler (window) | |||
| 1616 | void | 1616 | void |
| 1617 | init_service_handler () | 1617 | init_service_handler () |
| 1618 | { | 1618 | { |
| 1619 | EventTypeSpec specs[] = {{kEventClassService, kEventServiceGetTypes}, | 1619 | static const EventTypeSpec specs[] = |
| 1620 | {kEventClassService, kEventServiceCopy}, | 1620 | {{kEventClassService, kEventServiceGetTypes}, |
| 1621 | {kEventClassService, kEventServicePaste}, | 1621 | {kEventClassService, kEventServiceCopy}, |
| 1622 | {kEventClassService, kEventServicePerform}}; | 1622 | {kEventClassService, kEventServicePaste}, |
| 1623 | {kEventClassService, kEventServicePerform}}; | ||
| 1623 | InstallApplicationEventHandler (NewEventHandlerUPP (mac_handle_service_event), | 1624 | InstallApplicationEventHandler (NewEventHandlerUPP (mac_handle_service_event), |
| 1624 | GetEventTypeCount (specs), specs, NULL, NULL); | 1625 | GetEventTypeCount (specs), specs, NULL, NULL); |
| 1625 | } | 1626 | } |