summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/advice.el
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2015-09-10 10:10:54 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2015-09-10 10:12:37 -0700
commitcdb0ae37ab925b79b379fdfa780f57dad8607a3c (patch)
tree421038c6f8882548ba26074de94b425d9cd95ee5 /lisp/emacs-lisp/advice.el
parenta1cd8c96cad685912749efb395593524b199c536 (diff)
downloademacs-cdb0ae37ab925b79b379fdfa780f57dad8607a3c.tar.gz
Revert some stray curved quotes I missed earlier
Problem reported by David Kastrup in: http://lists.gnu.org/archive/html/emacs-devel/2015-09/msg00440.html * lisp/international/mule-cmds.el (leim-list-header): Use format-message with an ASCII-only format.
Diffstat (limited to 'lisp/emacs-lisp/advice.el')
-rw-r--r--lisp/emacs-lisp/advice.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/advice.el b/lisp/emacs-lisp/advice.el
index 62330fca71b..35cbcc27ba1 100644
--- a/lisp/emacs-lisp/advice.el
+++ b/lisp/emacs-lisp/advice.el
@@ -168,7 +168,8 @@
;; "Switch to non-existing buffers only upon confirmation."
;; (interactive "BSwitch to buffer: ")
;; (if (or (get-buffer (ad-get-arg 0))
-;; (y-or-n-p (format "ā€˜%s’ does not exist, create? " (ad-get-arg 0))))
+;; (y-or-n-p (format-message "`%s' does not exist, create? "
+;; (ad-get-arg 0))))
;; ad-do-it))
;;
;;(defadvice find-file (before existing-files-only activate)