diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-08-31 12:42:45 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-08-31 12:56:10 -0700 |
commit | 8bbff0d64d0e6ba21366c9fb24f6973e6c59b8ac (patch) | |
tree | d2e2598e982d958e2243bc0d665cf7315055aebe /lisp/mail/feedmail.el | |
parent | 0ff60ec82f98032375e8569a98c08b72d879bce4 (diff) | |
download | emacs-8bbff0d64d0e6ba21366c9fb24f6973e6c59b8ac.tar.gz |
Quoting fixes in lisp mail, mh-e, net, url
* lisp/mail/emacsbug.el (report-emacs-bug)
(report-emacs-bug-hook): Use straight quotes in outgoing email,
* lisp/mail/feedmail.el (feedmail-message-action-help-blat):
* lisp/mail/rmail.el (rmail-unknown-mail-followup-to):
* lisp/mail/rmailout.el (rmail-output-read-file-name):
* lisp/net/imap.el (imap-interactive-login):
* lisp/net/tls.el (open-tls-stream):
* lisp/url/url-auth.el (url-register-auth-scheme):
Respect ‘text-quoting-style’ in diagnostics.
* lisp/mh-e/mh-e.el (mh-sortm-args):
Quote docstring example using text quotes, not as a Lisp quote.
Diffstat (limited to 'lisp/mail/feedmail.el')
-rw-r--r-- | lisp/mail/feedmail.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/mail/feedmail.el b/lisp/mail/feedmail.el index a94a81c5575..ccd892640ec 100644 --- a/lisp/mail/feedmail.el +++ b/lisp/mail/feedmail.el @@ -1889,7 +1889,8 @@ with various lower-level mechanisms to provide features such as queueing." (defun feedmail-message-action-help-blat (d-string) (feedmail-say-debug ">in-> feedmail-message-action-help-blat") (with-output-to-temp-buffer feedmail-p-h-b-n - (princ "You're dispatching a message and feedmail queuing is enabled. + (princ (substitute-command-keys "\ +You're dispatching a message and feedmail queuing is enabled. Typing ? again will normally scroll this help buffer. Choices: @@ -1914,7 +1915,7 @@ Synonyms: y YUP do the default behavior \(same as \"C-m\"\) SPC SCROLL UP \(same as \">\"\) -The user-configurable default is currently \"") +The user-configurable default is currently \"")) (princ d-string) (princ "\". For other possibilities, see the variable feedmail-prompt-before-queue-user-alist. |