diff options
| author | Glenn Morris | 2008-08-11 01:18:53 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-08-11 01:18:53 +0000 |
| commit | 46a44648c6e94adce4d3dd2f467ed53f5aeb5169 (patch) | |
| tree | ca76831572a503d469dae9095683799453625778 | |
| parent | 00eade1a6de52f2118e0c3c53222afe8ab5a5584 (diff) | |
| download | emacs-46a44648c6e94adce4d3dd2f467ed53f5aeb5169.tar.gz emacs-46a44648c6e94adce4d3dd2f467ed53f5aeb5169.zip | |
(do-applescript): Fix declaration.
| -rw-r--r-- | lisp/org/org-mac-message.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/org/org-mac-message.el b/lisp/org/org-mac-message.el index 61d5fa7165e..41a8ff23ec4 100644 --- a/lisp/org/org-mac-message.el +++ b/lisp/org/org-mac-message.el | |||
| @@ -32,7 +32,8 @@ | |||
| 32 | 32 | ||
| 33 | (org-add-link-type "message" 'org-mac-message-open) | 33 | (org-add-link-type "message" 'org-mac-message-open) |
| 34 | 34 | ||
| 35 | (declare-function do-applescript "mac.c" (string)) | 35 | ;; In mac.c, removed in Emacs 23. |
| 36 | (declare-function do-applescript "org-mac-message" (string)) | ||
| 36 | (unless (fboundp 'do-applescript) | 37 | (unless (fboundp 'do-applescript) |
| 37 | ;; Need to fake this using shell-command-to-string | 38 | ;; Need to fake this using shell-command-to-string |
| 38 | (defun do-applescript (script) | 39 | (defun do-applescript (script) |