* auth-source.el (auth-source-pick): Fix for non-secrets specifier.
+2010-03-29 Teodor Zlatanov <tzz@lifelogs.com>
+
+ * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
+
2010-03-27 Teodor Zlatanov <tzz@lifelogs.com>
* auth-source.el (auth-sources): Change default to be simpler. Explain
(dolist (choice auth-sources)
(let* ((s (plist-get choice :source))
;; this is only set for Secret Service API specs (see secrets.el)
- (coll (plist-get s :secrets))
+ (coll (and (consp s) (plist-get s :secrets)))
(score 0))
(cond
(coll ; use secrets.el here