]> git.eshelyaron.com Git - emacs.git/commitdiff
(smtpmail-via-smtp): Use ascii-case-table when downcasing.
authorChong Yidong <cyd@stupidchicken.com>
Wed, 4 Apr 2007 15:38:04 +0000 (15:38 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Wed, 4 Apr 2007 15:38:04 +0000 (15:38 +0000)
lisp/mail/smtpmail.el

index 4d19e9371fd7deef1e71fcff094c4faeec8f1cd3..66c4bdd8df71587dec3d1056a7fdc45e252a2997 100644 (file)
@@ -691,8 +691,10 @@ This is relative to `smtpmail-queue-dir'.")
                          (>= (car response-code) 400))
                      (throw 'done nil)))
              (dolist (line (cdr (cdr response-code)))
-               (let ((name (mapcar (lambda (s) (intern (downcase s)))
-                                   (split-string (substring line 4) "[ ]"))))
+               (let ((name
+                      (with-case-table ascii-case-table
+                        (mapcar (lambda (s) (intern (downcase s)))
+                                (split-string (substring line 4) "[ ]")))))
                  (and (eq (length name) 1)
                       (setq name (car name)))
                  (and name