summaryrefslogtreecommitdiff
path: root/lisp/cedet
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2015-06-04 23:44:38 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2015-06-04 23:54:49 -0700
commit1ba0149572ff9841c4838a25358ef08a516976db (patch)
treec7a38c4bb2ae7a1db5f04529573d78b1a0433410 /lisp/cedet
parent8fb6253c0073aaee5c76762da4356b3c5c56c273 (diff)
downloademacs-1ba0149572ff9841c4838a25358ef08a516976db.tar.gz
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.
Diffstat (limited to 'lisp/cedet')
-rw-r--r--lisp/cedet/srecode/srt-mode.el4
1 files changed, 2 insertions, 2 deletions
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: ")