summaryrefslogtreecommitdiff
path: root/lisp/info-xref.el
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2015-10-01 21:42:53 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2015-10-01 21:44:35 -0700
commitdd6346e00c0910b16f1bd195e5e94f6ac1d696ee (patch)
treeb8fa1dbed8b583dc0e7a6441757f2354532d128e /lisp/info-xref.el
parent6083f333ed38aa65f1d0a4c2bd7505a29e887444 (diff)
downloademacs-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/info-xref.el')
-rw-r--r--lisp/info-xref.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/info-xref.el b/lisp/info-xref.el
index 2b81efa178e..fcdf5323db7 100644
--- a/lisp/info-xref.el
+++ b/lisp/info-xref.el
@@ -454,7 +454,7 @@ and can take a long time."
(cond ((symbolp load)
(condition-case cause (require load)
(error
- (info-xref-output "Symbol `%s': cannot require '%s: %s"
+ (info-xref-output "Symbol `%s': cannot require `%s': %s"
symbol load cause))))
;; skip if previously loaded
((assoc load load-history))