Make sure that the error message doesn't error out.
authorLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Mon, 20 Sep 2010 21:44:34 +0000 (23:44 +0200)
committerLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Mon, 20 Sep 2010 21:44:34 +0000 (23:44 +0200)
lisp/ChangeLog
lisp/nnimap.el

index e93300e..6b7f0f5 100644 (file)
@@ -8,6 +8,7 @@
        (nnimap-request-move-article): When moving an article from nnimap,
        request the article first so the accepting form has an article to
        accept.  Reported by Dan Christensen.
        (nnimap-request-move-article): When moving an article from nnimap,
        request the article first so the accepting form has an article to
        accept.  Reported by Dan Christensen.
+       (nnimap-command): Make sure that the error message doesn't error out.
 
 2010-09-20  David Edmondson  <dme@dme.org>  (tiny change)
 
 
 2010-09-20  David Edmondson  <dme@dme.org>  (tiny change)
 
index cc6f4f8..888101c 100644 (file)
@@ -877,7 +877,9 @@ textual parts.")
     (if (equal (caar response) "OK")
        (cons t response)
       (nnheader-report 'nnimap "%s"
     (if (equal (caar response) "OK")
        (cons t response)
       (nnheader-report 'nnimap "%s"
-                      (mapconcat #'identity (car response) " "))
+                      (mapconcat (lambda (a)
+                                   (format "%s"))
+                                 (car response) " "))
       nil)))
 
 (defun nnimap-get-response (sequence)
       nil)))
 
 (defun nnimap-get-response (sequence)