diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-10-01 21:42:53 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-10-01 21:44:35 -0700 |
commit | dd6346e00c0910b16f1bd195e5e94f6ac1d696ee (patch) | |
tree | b8fa1dbed8b583dc0e7a6441757f2354532d128e /lisp/mail/emacsbug.el | |
parent | 6083f333ed38aa65f1d0a4c2bd7505a29e887444 (diff) | |
download | emacs-dd6346e00c0910b16f1bd195e5e94f6ac1d696ee.tar.gz |
Fix a few problems with directed quotes
This is in response to a problem report by Kaushal Modi in:
http://bugs.gnu.org/21588#25
* lisp/cedet/mode-local.el (describe-mode-local-overload):
* lisp/emacs-lisp/bytecomp.el (byte-compile-fix-header):
* lisp/info-xref.el (info-xref-check-all-custom):
* lisp/mail/emacsbug.el (report-emacs-bug-hook):
Prefer directed to undirected single quotes in diagnostics.
Diffstat (limited to 'lisp/mail/emacsbug.el')
-rw-r--r-- | lisp/mail/emacsbug.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el index f54893fb4be..8e28973c43f 100644 --- a/lisp/mail/emacsbug.el +++ b/lisp/mail/emacsbug.el @@ -417,7 +417,8 @@ and send the mail again%s." (regexp-quote (system-name))) from)) (not (yes-or-no-p - (format "Is '%s' really your email address? " from))) + (format-message "Is `%s' really your email address? " + from))) (error "Please edit the From address and try again")))))) |