diff options
author | Glenn Morris <rgm@gnu.org> | 2009-02-13 07:52:18 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-02-13 07:52:18 +0000 |
commit | 41342c802485877aa4fee26f11f3470f0228ed3c (patch) | |
tree | eb5f84e009337965e0fe3bc7d86e5b32dbf777b1 /lisp/org | |
parent | bc04f2072371259bcf77d1d513ce5be74ea953c2 (diff) | |
download | emacs-41342c802485877aa4fee26f11f3470f0228ed3c.tar.gz |
(rmail-show-message): Restore argument list to the declaration now
that this functions behaves in Emacs 23 as in 22.
Diffstat (limited to 'lisp/org')
-rw-r--r-- | lisp/org/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/org/org-rmail.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog index ad6cb2f17e4..f0eb33ff79b 100644 --- a/lisp/org/ChangeLog +++ b/lisp/org/ChangeLog @@ -1,3 +1,8 @@ +2009-02-13 Glenn Morris <rgm@gnu.org> + + * org-rmail.el (rmail-show-message): Restore argument list to the + declaration now that this functions behaves in Emacs 23 as in 22. + 2009-02-12 Glenn Morris <rgm@gnu.org> * org-footnote.el (org-footnote-at-definition-p): Fix doc typo. diff --git a/lisp/org/org-rmail.el b/lisp/org/org-rmail.el index 1f9bdf619e4..aed410f3d01 100644 --- a/lisp/org/org-rmail.el +++ b/lisp/org/org-rmail.el @@ -35,7 +35,7 @@ (require 'org) ;; Declare external functions and variables -(declare-function rmail-show-message "rmail") +(declare-function rmail-show-message "rmail" (&optional n no-summary)) (declare-function rmail-get-header "rmail" (name &optional msgnum)) (declare-function rmail-what-message "rmail" ()) (defvar rmail-current-message) |