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/url | |
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/url')
-rw-r--r-- | lisp/url/url-auth.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/url/url-auth.el b/lisp/url/url-auth.el index 64f56f0cc15..87f67183b55 100644 --- a/lisp/url/url-auth.el +++ b/lisp/url/url-auth.el @@ -336,11 +336,11 @@ RATING a rating between 1 and 10 of the strength of the authentication. (t rating))) (node (assoc type url-registered-auth-schemes))) (if (not (fboundp function)) - (url-warn 'security - (format (concat - "Tried to register `%s' as an auth scheme" - ", but it is not a function!") function))) - + (url-warn + 'security + (format-message + "Tried to register `%s' as an auth scheme, but it is not a function!" + function))) (if node (setcdr node (cons function rating)) (setq url-registered-auth-schemes |