From 1ba0149572ff9841c4838a25358ef08a516976db Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Thu, 4 Jun 2015 23:44:38 -0700 Subject: Fix curved quotes in a few places * lisp/calc/calc-misc.el (calc-help): Fix quoting. The strings in question are not doc strings, so this partially undoes the recent change that assumed they were doc strings. * lisp/cedet/srecode/srt-mode.el (srecode-macro-help): * lisp/info.el (Info-finder-find-node): Use curved quotes. * lisp/emacs-lisp/derived.el (derived-mode-make-docstring): Also allow curved quotes in doc strings. --- lisp/cedet/srecode/srt-mode.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lisp/cedet/srecode') diff --git a/lisp/cedet/srecode/srt-mode.el b/lisp/cedet/srecode/srt-mode.el index 79672ec3b1b..fbc56357b1c 100644 --- a/lisp/cedet/srecode/srt-mode.el +++ b/lisp/cedet/srecode/srt-mode.el @@ -258,9 +258,9 @@ we can tell font lock about them.") (when (class-abstract-p C) (throw 'skip nil)) - (princ "`") + (princ "‘") (princ name) - (princ "'") + (princ "’") (when (slot-exists-p C 'key) (when key (princ " - Character Key: ") -- cgit v1.2.3