summaryrefslogtreecommitdiff
path: root/lisp/net/imap.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/net/imap.el')
-rw-r--r--lisp/net/imap.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/net/imap.el b/lisp/net/imap.el
index cc53e0432b6..b559ff65908 100644
--- a/lisp/net/imap.el
+++ b/lisp/net/imap.el
@@ -851,14 +851,14 @@ t if it successfully authenticates, nil otherwise."
(setq user (or imap-username
(read-from-minibuffer
(format-message
- "imap: username for %s (using stream ā€˜%sā€™): "
+ "imap: username for %s (using stream `%s'): "
imap-server imap-stream)
(or user imap-default-user))))
(setq passwd
(or imap-password
(read-passwd
(format-message
- "imap: password for %s@%s (using authenticator ā€˜%sā€™): "
+ "imap: password for %s@%s (using authenticator `%s'): "
user imap-server imap-auth))))
(when (and user passwd)
(if (funcall loginfunc user passwd)