[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] master 66b7543: Set default when asking for send-mail-func
From: |
Noam Postavsky |
Subject: |
[Emacs-diffs] master 66b7543: Set default when asking for send-mail-function (Bug#25874). |
Date: |
Mon, 6 Mar 2017 23:09:30 -0500 (EST) |
branch: master
commit 66b7543eab5f500f2e7cf0cce9b260991107fc97
Author: Noam Postavsky <address@hidden>
Commit: Noam Postavsky <address@hidden>
Set default when asking for send-mail-function (Bug#25874).
* lisp/mail/sendmail.el (sendmail-query-user-about-smtp): Pass first
option as default for `completing-read'.
---
lisp/mail/sendmail.el | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index 70c8ea1..42b688f 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -555,8 +555,9 @@ This also saves the value of `send-mail-function' via
Customize."
(goto-char (point-min))
(display-buffer (current-buffer))
(let ((completion-ignore-case t))
- (completing-read "Send mail via: "
- options nil 'require-match)))))
+ (completing-read
+ (format "Send mail via (default %s): " (caar options))
+ options nil 'require-match nil nil (car options))))))
(customize-save-variable 'send-mail-function
(cdr (assoc-string choice options t)))))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] master 66b7543: Set default when asking for send-mail-function (Bug#25874).,
Noam Postavsky <=