emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r99764: 2010-03-29 Teodor Zlatanov <a


From: Katsumi Yamaoka
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r99764: 2010-03-29 Teodor Zlatanov <address@hidden>
Date: Mon, 29 Mar 2010 09:29:19 +0000
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 99764 [merge]
committer: Katsumi Yamaoka <address@hidden>
branch nick: trunk
timestamp: Mon 2010-03-29 09:29:19 +0000
message:
  2010-03-29  Teodor Zlatanov  <address@hidden>
   * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
modified:
  lisp/gnus/ChangeLog
  lisp/gnus/auth-source.el
=== modified file 'lisp/gnus/ChangeLog'
--- a/lisp/gnus/ChangeLog       2010-03-28 23:52:01 +0000
+++ b/lisp/gnus/ChangeLog       2010-03-29 09:28:20 +0000
@@ -1,3 +1,7 @@
+2010-03-29  Teodor Zlatanov  <address@hidden>
+
+       * auth-source.el (auth-source-pick): Fix for non-secrets specifier.
+
 2010-03-27  Teodor Zlatanov  <address@hidden>
 
        * auth-source.el (auth-sources): Change default to be simpler.  Explain

=== modified file 'lisp/gnus/auth-source.el'
--- a/lisp/gnus/auth-source.el  2010-03-28 23:52:01 +0000
+++ b/lisp/gnus/auth-source.el  2010-03-29 09:28:20 +0000
@@ -214,7 +214,7 @@
        (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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]