diff options
| author | Glenn Morris | 2008-08-11 01:19:29 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-08-11 01:19:29 +0000 |
| commit | 79e43d6ecac6a45c110cd7634caae4bcf6d6ffdf (patch) | |
| tree | 6548c995ab2d48bc31075440b33206ec97adf7a2 | |
| parent | 46a44648c6e94adce4d3dd2f467ed53f5aeb5169 (diff) | |
| download | emacs-79e43d6ecac6a45c110cd7634caae4bcf6d6ffdf.tar.gz emacs-79e43d6ecac6a45c110cd7634caae4bcf6d6ffdf.zip | |
Fix previous change.
| -rw-r--r-- | lisp/org/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/org/org-mac-message.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog index 95601912fe5..72b3870491b 100644 --- a/lisp/org/ChangeLog +++ b/lisp/org/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-08-11 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * org-mac-message.el (do-applescript): Fix declaration. | ||
| 4 | |||
| 1 | 2008-08-10 Glenn Morris <rgm@gnu.org> | 5 | 2008-08-10 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * org-exp.el (org-export-as-html): Let-bind `i'. | 7 | * org-exp.el (org-export-as-html): Let-bind `i'. |
diff --git a/lisp/org/org-mac-message.el b/lisp/org/org-mac-message.el index 41a8ff23ec4..1ee0b57f6a6 100644 --- a/lisp/org/org-mac-message.el +++ b/lisp/org/org-mac-message.el | |||
| @@ -33,7 +33,7 @@ | |||
| 33 | (org-add-link-type "message" 'org-mac-message-open) | 33 | (org-add-link-type "message" 'org-mac-message-open) |
| 34 | 34 | ||
| 35 | ;; In mac.c, removed in Emacs 23. | 35 | ;; In mac.c, removed in Emacs 23. |
| 36 | (declare-function do-applescript "org-mac-message" (string)) | 36 | (declare-function do-applescript "org-mac-message" (script)) |
| 37 | (unless (fboundp 'do-applescript) | 37 | (unless (fboundp 'do-applescript) |
| 38 | ;; Need to fake this using shell-command-to-string | 38 | ;; Need to fake this using shell-command-to-string |
| 39 | (defun do-applescript (script) | 39 | (defun do-applescript (script) |