diff options
author | Simon Josefsson <jas@extundo.com> | 2006-10-02 07:48:59 +0000 |
---|---|---|
committer | Simon Josefsson <jas@extundo.com> | 2006-10-02 07:48:59 +0000 |
commit | 6c77efbed3968cbe066138c098e26f928d1150ce (patch) | |
tree | cad8478195551a3705145fc2352064e849e7a1d4 /lisp/mail | |
parent | 4e14c04cd00da70ea1aa18abdf05a686d9ff45d5 (diff) | |
download | emacs-6c77efbed3968cbe066138c098e26f928d1150ce.tar.gz |
2006-10-02 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
* mail/smtpmail.el (smtpmail-try-auth-methods): Fix typo in
2006-09-28 commit.
Diffstat (limited to 'lisp/mail')
-rw-r--r-- | lisp/mail/smtpmail.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/smtpmail.el b/lisp/mail/smtpmail.el index a39950a6b65..9557844a32a 100644 --- a/lisp/mail/smtpmail.el +++ b/lisp/mail/smtpmail.el @@ -554,7 +554,7 @@ This is relative to `smtpmail-queue-dir'.") (>= (car ret) 400)) (throw 'done nil)) (smtpmail-send-command - process (base64-encode-string (smtpmail-cred-user cred t))) + process (base64-encode-string (smtpmail-cred-user cred) t)) (if (or (null (car (setq ret (smtpmail-read-response process)))) (not (integerp (car ret))) (>= (car ret) 400)) |