Changes committed gnus/contrib (ChangeLog nnir.el)
"Reiner Steib" <[email protected]>
| Newsgroups | gmane.emacs.gnus.commits |
|---|---|
| Message-ID | <[email protected]> |
Modified: ChangeLog nnir.el (nnir-add-result): Properly substitute the parameters. Index: ChangeLog diff -u gnus/contrib/ChangeLog:7.72 gnus/contrib/ChangeLog:7.73 --- ChangeLog:7.72 Thu May 8 20:13:53 2008 +++ ChangeLog Thu May 15 22:11:34 2008 @@ -1,4 +1,4 @@ -2008-05-08 Andreas Schwab <[email protected]> +2008-05-15 Andreas Schwab <[email protected]> * nnir.el (nnir-add-result): Properly substitute the parameters. Index: nnir.el diff -u gnus/contrib/nnir.el:7.32 gnus/contrib/nnir.el:7.33 --- nnir.el:7.32 Thu May 8 20:11:06 2008 +++ nnir.el Thu May 15 22:11:34 2008 @@ -849,9 +849,9 @@ (defmacro nnir-add-result (dirnam artno score prefix server artlist) "Ask `nnir-compose-result' to construct a result vector, and if it is non-nil, add it to artlist." - `(let ((result (nnir-compose-result dirnam artno score prefix server))) + `(let ((result (nnir-compose-result ,dirnam ,artno ,score ,prefix ,server))) (when (not (null result)) - (push result artlist)))) + (push result ,artlist)))) (autoload 'nnmaildir-base-name-to-article-number "nnmaildir")