diff options
| -rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/auth-source.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index ecbce02ad85..f2d6714dff4 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-03-29 Teodor Zlatanov <tzz@lifelogs.com> | ||
| 2 | |||
| 3 | * auth-source.el (auth-source-pick): Fix for non-secrets specifier. | ||
| 4 | |||
| 1 | 2010-03-27 Teodor Zlatanov <tzz@lifelogs.com> | 5 | 2010-03-27 Teodor Zlatanov <tzz@lifelogs.com> |
| 2 | 6 | ||
| 3 | * auth-source.el (auth-sources): Change default to be simpler. Explain | 7 | * auth-source.el (auth-sources): Change default to be simpler. Explain |
diff --git a/lisp/gnus/auth-source.el b/lisp/gnus/auth-source.el index 8c59aee9714..a5e323c0395 100644 --- a/lisp/gnus/auth-source.el +++ b/lisp/gnus/auth-source.el | |||
| @@ -214,7 +214,7 @@ checked for fallback choices." | |||
| 214 | (dolist (choice auth-sources) | 214 | (dolist (choice auth-sources) |
| 215 | (let* ((s (plist-get choice :source)) | 215 | (let* ((s (plist-get choice :source)) |
| 216 | ;; this is only set for Secret Service API specs (see secrets.el) | 216 | ;; this is only set for Secret Service API specs (see secrets.el) |
| 217 | (coll (plist-get s :secrets)) | 217 | (coll (and (consp s) (plist-get s :secrets))) |
| 218 | (score 0)) | 218 | (score 0)) |
| 219 | (cond | 219 | (cond |
| 220 | (coll ; use secrets.el here | 220 | (coll ; use secrets.el here |