diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-06-04 23:44:38 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-06-04 23:54:49 -0700 |
commit | 1ba0149572ff9841c4838a25358ef08a516976db (patch) | |
tree | c7a38c4bb2ae7a1db5f04529573d78b1a0433410 /lisp/cedet/srecode | |
parent | 8fb6253c0073aaee5c76762da4356b3c5c56c273 (diff) | |
download | emacs-1ba0149572ff9841c4838a25358ef08a516976db.tar.gz emacs-1ba0149572ff9841c4838a25358ef08a516976db.tar.bz2 emacs-1ba0149572ff9841c4838a25358ef08a516976db.zip |
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/srecode')
-rw-r--r-- | lisp/cedet/srecode/srt-mode.el | 4 |
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: ") |