lisp/gnus/nnir.el: Fix byte-compile warning. nnoo-define-skeleton should come after other deffoos

This commit is contained in:
Andrew Cohen 2013-03-27 01:17:08 +00:00 committed by Katsumi Yamaoka
parent 15e4ed9c6a
commit ab9a3f05c8
2 changed files with 11 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2013-03-27 Andrew Cohen <cohen@bu.edu>
* nnir.el: Fix byte-compile warning. nnoo-define-skeleton should come
after other deffoos.
2013-03-26 Andrew Cohen <cohen@bu.edu>
* nnir.el: Major rewrite. Cleaner separation between searches and group

View file

@ -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)