aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2007-04-04 15:38:04 +0000
committerChong Yidong2007-04-04 15:38:04 +0000
commitb242a76c57eaef55caafeab20e07318a65140e1d (patch)
treea9ec96f035c948236d3d7ab4095f49bf75b3c4b7
parent94e630238aba2c55d0b5f19425a0a94790a6bc05 (diff)
downloademacs-b242a76c57eaef55caafeab20e07318a65140e1d.tar.gz
emacs-b242a76c57eaef55caafeab20e07318a65140e1d.zip
(smtpmail-via-smtp): Use ascii-case-table when downcasing.
-rw-r--r--lisp/mail/smtpmail.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el
index 4d19e9371fd..66c4bdd8df7 100644
--- a/lisp/mail/smtpmail.el
+++ b/lisp/mail/smtpmail.el
@@ -691,8 +691,10 @@ This is relative to `smtpmail-queue-dir'.")
691 (>= (car response-code) 400)) 691 (>= (car response-code) 400))
692 (throw 'done nil))) 692 (throw 'done nil)))
693 (dolist (line (cdr (cdr response-code))) 693 (dolist (line (cdr (cdr response-code)))
694 (let ((name (mapcar (lambda (s) (intern (downcase s))) 694 (let ((name
695 (split-string (substring line 4) "[ ]")))) 695 (with-case-table ascii-case-table
696 (mapcar (lambda (s) (intern (downcase s)))
697 (split-string (substring line 4) "[ ]")))))
696 (and (eq (length name) 1) 698 (and (eq (length name) 1)
697 (setq name (car name))) 699 (setq name (car name)))
698 (and name 700 (and name