diff options
| author | Glenn Morris | 2012-04-16 15:09:19 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-04-16 15:09:19 -0400 |
| commit | 5261b92ebe71d21e8d36f65f4555a1f90c088281 (patch) | |
| tree | bf4cd61a1872f55d1e9464b55f9aa71528f0f4f6 | |
| parent | 175c5e4861127e7ce6659efefa03ab0cfad8f048 (diff) | |
| download | emacs-5261b92ebe71d21e8d36f65f4555a1f90c088281.tar.gz emacs-5261b92ebe71d21e8d36f65f4555a1f90c088281.zip | |
* lisp/gnus/nndraft.el (nndraft-request-list): Fix declaration.
| -rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/nndraft.el | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 23e800e0f3f..52f140d9192 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-04-16 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * nndraft.el (nndraft-request-list): Fix declaration. | ||
| 4 | |||
| 1 | 2012-04-14 Lars Magne Ingebrigtsen <larsi@gnus.org> | 5 | 2012-04-14 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 6 | ||
| 3 | * gnus-msg.el (gnus-inews-insert-gcc): Don't do the alist stuff when we | 7 | * gnus-msg.el (gnus-inews-insert-gcc): Don't do the alist stuff when we |
diff --git a/lisp/gnus/nndraft.el b/lisp/gnus/nndraft.el index 1800d0c02de..da50720ebbe 100644 --- a/lisp/gnus/nndraft.el +++ b/lisp/gnus/nndraft.el | |||
| @@ -37,7 +37,8 @@ | |||
| 37 | (require 'mm-util) | 37 | (require 'mm-util) |
| 38 | (eval-when-compile (require 'cl)) | 38 | (eval-when-compile (require 'cl)) |
| 39 | 39 | ||
| 40 | (declare-function nndraft-request-list "nnmh" (&rest args)) | 40 | ;; The nnoo-import at the end, I think. |
| 41 | (declare-function nndraft-request-list "nndraft" (&rest args) t) | ||
| 41 | 42 | ||
| 42 | (nnoo-declare nndraft | 43 | (nnoo-declare nndraft |
| 43 | nnmh) | 44 | nnmh) |