1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

Merge from origin/emacs-28

ea44d7ddfc ; * lisp/mail/smtpmail.el (smtpmail-via-smtp): Explain wit...
This commit is contained in:
Stefan Kangas 2022-07-21 06:30:38 +02:00
commit 5ebd15f2da

View file

@ -806,7 +806,11 @@ Returns an error if the server cannot be contacted."
(plist-get (cdr result) :capabilities)
"\r\n")))
(let ((name
(with-case-table ascii-case-table ;FIXME: Why?
;; Use ASCII case-table to prevent I
;; downcasing to a dotless i under some
;; language environments. See
;; https://lists.gnu.org/archive/html/emacs-devel/2007-03/msg01760.html.
(with-case-table ascii-case-table
(mapcar (lambda (s) (intern (downcase s)))
(split-string (substring line 4) "[ ]")))))
(when (= (length name) 1)