From: Andrew Cohen Date: Wed, 27 Mar 2013 01:17:08 +0000 (+0000) Subject: lisp/gnus/nnir.el: Fix byte-compile warning. nnoo-define-skeleton should come after... X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~2026^2~526^2~78 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ab9a3f05c8621bbd6b05c8e4c02192c852ea03bf;p=emacs.git lisp/gnus/nnir.el: Fix byte-compile warning. nnoo-define-skeleton should come after other deffoos --- diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 9fffc4f1a45..1af3a00c00e 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,3 +1,8 @@ +2013-03-27 Andrew Cohen + + * nnir.el: Fix byte-compile warning. nnoo-define-skeleton should come + after other deffoos. + 2013-03-26 Andrew Cohen * nnir.el: Major rewrite. Cleaner separation between searches and group diff --git a/lisp/gnus/nnir.el b/lisp/gnus/nnir.el index cabd08b0653..a48c6043e82 100644 --- a/lisp/gnus/nnir.el +++ b/lisp/gnus/nnir.el @@ -886,7 +886,7 @@ skips all prompting." ;; (car (assoc '(nnir "nnir-ephemeral" (nnir-address "nnir")) ;; gnus-opened-servers)))) -(nnoo-define-skeleton nnir) + (defmacro nnir-add-result (dirnam artno score prefix server artlist) @@ -1880,6 +1880,11 @@ article came from is also searched." (nnir-request-update-info pgroup (gnus-get-info pgroup))) t)) +(deffoo nnir-request-close () + t) + + +(nnoo-define-skeleton nnir) ;; The end. (provide 'nnir)