aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2007-04-02 22:45:41 +0000
committerChong Yidong2007-04-02 22:45:41 +0000
commitf01ac5da4af8d74a3b1b75d512f3b222eb7e0eeb (patch)
treeb65d9b82daf6462e0c515936fd40553a0b50b3bd
parent1bfa6e94539c4c74b5c0dcf59977622ab45fd861 (diff)
downloademacs-f01ac5da4af8d74a3b1b75d512f3b222eb7e0eeb.tar.gz
emacs-f01ac5da4af8d74a3b1b75d512f3b222eb7e0eeb.zip
(smtpmail-via-smtp): Revert last change.
-rw-r--r--lisp/mail/smtpmail.el14
1 files changed, 2 insertions, 12 deletions
diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el
index 66015475e4c..e1e742a1d72 100644
--- a/lisp/mail/smtpmail.el
+++ b/lisp/mail/smtpmail.el
@@ -691,18 +691,8 @@ 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 ((old-case-table (current-case-table)) 694 (let ((name (mapcar (lambda (s) (intern (downcase s)))
695 name) 695 (split-string (substring line 4) "[ ]"))))
696 ;; Make sure we're using the standard case table
697 ;; when downcasing; for instance, a downcased I is a
698 ;; dotless i in Turkish.
699 (unwind-protect
700 (progn (set-case-table (standard-case-table))
701 (setq name
702 (mapcar (lambda (s) (intern (downcase s)))
703 (split-string
704 (substring line 4) "[ ]"))))
705 (set-case-table old-case-table))
706 (and (eq (length name) 1) 696 (and (eq (length name) 1)
707 (setq name (car name))) 697 (setq name (car name)))
708 (and name 698 (and name