diff options
| author | Katsumi Yamaoka | 2010-03-29 09:28:20 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2010-03-29 09:28:20 +0000 |
| commit | afae6cd428f9466fcab5ceaea5f0474d69f16c81 (patch) | |
| tree | c6a586cfa5bb33941740de0e08fb4d967bfc33af | |
| parent | bd3e840f41d2fa3309e94eea75b28ba32e2a7e9c (diff) | |
| download | emacs-afae6cd428f9466fcab5ceaea5f0474d69f16c81.tar.gz emacs-afae6cd428f9466fcab5ceaea5f0474d69f16c81.zip | |
2010-03-29 Teodor Zlatanov <tzz@lifelogs.com>
* auth-source.el (auth-source-pick): Fix for non-secrets specifier.
| -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 |