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/info.el | |
parent | 8fb6253c0073aaee5c76762da4356b3c5c56c273 (diff) | |
download | emacs-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/info.el')
-rw-r--r-- | lisp/info.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/info.el b/lisp/info.el index 59ce465f5aa..9602337e193 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -3707,7 +3707,7 @@ Build a menu of the possible matches." (insert "Finder Packages\n") (insert "***************\n\n") (insert - "The following packages match the keyword `" nodename "':\n\n") + "The following packages match the keyword ‘" nodename "’:\n\n") (insert "* Menu:\n\n") (let ((keywords (mapcar #'intern (if (string-match-p "," nodename) @@ -3734,7 +3734,7 @@ Build a menu of the possible matches." (insert "Package Description\n") (insert "*******************\n\n") (insert - "Description of the package `" nodename "':\n\n") + "Description of the package ‘" nodename "’:\n\n") ;; This assumes that a file named package.el exists, ;; which is not always true. E.g. for the nxml package, ;; there is no "nxml.el" (it's nxml-mode.el). |