]> git.eshelyaron.com Git - emacs.git/commitdiff
auth-source.el (auth-source-backend-parse-parameters): Don't rely on `plist-get'...
authorTeodor Zlatanov <tzz@lifelogs.com>
Mon, 14 Feb 2011 12:24:43 +0000 (12:24 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Mon, 14 Feb 2011 12:24:43 +0000 (12:24 +0000)
lisp/gnus/ChangeLog
lisp/gnus/auth-source.el

index 9dd336a1f0965c314cbaf56b09cc8e8c1a577352..747f71f835a4dbf68040f673f134edf62dd86757 100644 (file)
@@ -1,3 +1,9 @@
+2011-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
+
+       * auth-source.el (auth-source-backend-parse-parameters): Don't rely on
+       `plist-get' to accept non-list parameters (XEmacs issue).  Fix
+       docstring.
+
 2011-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
 
        * nnimap.el (nnimap-inhibit-logging): New variable.
index 8f4a6ddc7b46b2976afd76bbcfacfc4d01462176..be698ad35d0158aaedaaa7df10e18970f469f728 100644 (file)
@@ -331,9 +331,11 @@ If the value is not a list, symmetric encryption will be used."
 (defun auth-source-backend-parse-parameters (entry backend)
   "Fills in the extra auth-source-backend parameters of ENTRY.
 Using the plist ENTRY, get the :host, :protocol, and :user search
-parameters.  Accepts :port as an alias to :protocol.  Sets all
-the parameters to t if they are missing."
-  (let (val)
+parameters.  Accepts :port as an alias to :protocol."
+  (let ((entry (if (stringp entry)
+                   nil
+                 entry))
+        val)
     (when (setq val (plist-get entry :host))
       (oset backend host val))
     (when (setq val (plist-get entry :user))