diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-05-24 18:42:30 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-05-24 18:48:50 +0200 |
commit | d036891967aebcf9cb7ef468d8e8f2019ffde6e2 (patch) | |
tree | 19e3014a2038da36f0c3df503ca48344f6c1b9df /lisp/help.el | |
parent | 881aa943e58abb338375d30789373506726c28ba (diff) | |
download | emacs-d036891967aebcf9cb7ef468d8e8f2019ffde6e2.tar.gz emacs-d036891967aebcf9cb7ef468d8e8f2019ffde6e2.tar.bz2 emacs-d036891967aebcf9cb7ef468d8e8f2019ffde6e2.zip |
Fix the final divergent single quote usages in doc strings
* lisp/view.el (view-mode-map):
* lisp/repeat.el (repeat-is-really-this-command):
* lisp/help.el (substitute-command-keys):
* lisp/electric.el (electric-quote-mode):
* lisp/cedet/srecode/texi.el (srecode-texi-texify-docstring):
* lisp/cedet/semantic/sort.el
(semantic-orphaned-member-metaparent-type): Audit usages of single
quotes in doc strings.
Diffstat (limited to 'lisp/help.el')
-rw-r--r-- | lisp/help.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/help.el b/lisp/help.el index ae65cc07dfa..1faebdf461d 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -1102,10 +1102,10 @@ KEYBINDING and use the `help-key-binding' face. Each substring of the form \\\\={MAPVAR} is replaced by a summary of the value of MAPVAR as a keymap. This summary is similar to -the one produced by ‘describe-bindings’. This will normally +the one produced by `describe-bindings'. This will normally exclude menu bindings, but if the optional INCLUDE-MENUS argument is non-nil, also include menu bindings. The summary ends in two -newlines (used by the helper function ‘help-make-xrefs’ to find +newlines (used by the helper function `help-make-xrefs' to find the end of the summary). Each substring of the form \\\\=<MAPVAR> specifies the use of MAPVAR @@ -1113,7 +1113,7 @@ as the keymap for future \\\\=[COMMAND] substrings. Each grave accent \\=` is replaced by left quote, and each apostrophe \\=' is replaced by right quote. Left and right quote characters are -specified by ‘text-quoting-style’. +specified by `text-quoting-style'. \\\\== quotes the following character and is discarded; thus, \\\\==\\\\== puts \\\\== into the output, \\\\==\\[ puts \\[ into the output, and \\\\==\\=` puts \\=` into the |