mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-10 01:34:36 -08:00
(smtpmail-via-smtp): Revert last change.
This commit is contained in:
parent
1bfa6e9453
commit
f01ac5da4a
1 changed files with 2 additions and 12 deletions
|
|
@ -691,18 +691,8 @@ This is relative to `smtpmail-queue-dir'.")
|
|||
(>= (car response-code) 400))
|
||||
(throw 'done nil)))
|
||||
(dolist (line (cdr (cdr response-code)))
|
||||
(let ((old-case-table (current-case-table))
|
||||
name)
|
||||
;; Make sure we're using the standard case table
|
||||
;; when downcasing; for instance, a downcased I is a
|
||||
;; dotless i in Turkish.
|
||||
(unwind-protect
|
||||
(progn (set-case-table (standard-case-table))
|
||||
(setq name
|
||||
(mapcar (lambda (s) (intern (downcase s)))
|
||||
(split-string
|
||||
(substring line 4) "[ ]"))))
|
||||
(set-case-table old-case-table))
|
||||
(let ((name (mapcar (lambda (s) (intern (downcase s)))
|
||||
(split-string (substring line 4) "[ ]"))))
|
||||
(and (eq (length name) 1)
|
||||
(setq name (car name)))
|
||||
(and name
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue