diff options
| author | Andrew Cohen | 2013-03-27 01:17:08 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2013-03-27 01:17:08 +0000 |
| commit | ab9a3f05c8621bbd6b05c8e4c02192c852ea03bf (patch) | |
| tree | 239a15caae3cb7ea9f86f04449576a46bbf19bb3 | |
| parent | 15e4ed9c6a6fd9b5cc587a7318e7b82389ca1b56 (diff) | |
| download | emacs-ab9a3f05c8621bbd6b05c8e4c02192c852ea03bf.tar.gz emacs-ab9a3f05c8621bbd6b05c8e4c02192c852ea03bf.zip | |
lisp/gnus/nnir.el: Fix byte-compile warning. nnoo-define-skeleton should come after other deffoos
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/nnir.el | 7 |
2 files changed, 11 insertions, 1 deletions
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 @@ | |||
| 1 | 2013-03-27 Andrew Cohen <cohen@bu.edu> | ||
| 2 | |||
| 3 | * nnir.el: Fix byte-compile warning. nnoo-define-skeleton should come | ||
| 4 | after other deffoos. | ||
| 5 | |||
| 1 | 2013-03-26 Andrew Cohen <cohen@bu.edu> | 6 | 2013-03-26 Andrew Cohen <cohen@bu.edu> |
| 2 | 7 | ||
| 3 | * nnir.el: Major rewrite. Cleaner separation between searches and group | 8 | * 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." | |||
| 886 | ;; (car (assoc '(nnir "nnir-ephemeral" (nnir-address "nnir")) | 886 | ;; (car (assoc '(nnir "nnir-ephemeral" (nnir-address "nnir")) |
| 887 | ;; gnus-opened-servers)))) | 887 | ;; gnus-opened-servers)))) |
| 888 | 888 | ||
| 889 | (nnoo-define-skeleton nnir) | 889 | |
| 890 | 890 | ||
| 891 | 891 | ||
| 892 | (defmacro nnir-add-result (dirnam artno score prefix server artlist) | 892 | (defmacro nnir-add-result (dirnam artno score prefix server artlist) |
| @@ -1880,6 +1880,11 @@ article came from is also searched." | |||
| 1880 | (nnir-request-update-info pgroup (gnus-get-info pgroup))) | 1880 | (nnir-request-update-info pgroup (gnus-get-info pgroup))) |
| 1881 | t)) | 1881 | t)) |
| 1882 | 1882 | ||
| 1883 | (deffoo nnir-request-close () | ||
| 1884 | t) | ||
| 1885 | |||
| 1886 | |||
| 1887 | (nnoo-define-skeleton nnir) | ||
| 1883 | 1888 | ||
| 1884 | ;; The end. | 1889 | ;; The end. |
| 1885 | (provide 'nnir) | 1890 | (provide 'nnir) |