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/cedet | |
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/cedet')
-rw-r--r-- | lisp/cedet/semantic/sort.el | 2 | ||||
-rw-r--r-- | lisp/cedet/srecode/texi.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/cedet/semantic/sort.el b/lisp/cedet/semantic/sort.el index 1503a766dc8..756b949c0d1 100644 --- a/lisp/cedet/semantic/sort.el +++ b/lisp/cedet/semantic/sort.el @@ -310,7 +310,7 @@ may re-organize the list with side-effects." ;; class tag. ;; (defvar-local semantic-orphaned-member-metaparent-type "class" - "In `semantic-adopt-external-members', the type of 'type for metaparents. + "In `semantic-adopt-external-members', the type of `type' for metaparents. A metaparent is a made-up type semantic token used to hold the child list of orphaned members of a named type.") diff --git a/lisp/cedet/srecode/texi.el b/lisp/cedet/srecode/texi.el index 50b0e150ff3..c297429e408 100644 --- a/lisp/cedet/srecode/texi.el +++ b/lisp/cedet/srecode/texi.el @@ -246,7 +246,7 @@ that class. class => @code{class} @xref{class} unknown => @code{unknown} \"text\" => \\=`\\=`text\\='\\=' - 'quoteme => @code{quoteme} + \\='quoteme => @code{quoteme} non-nil => non-@code{nil} t => @code{t} :tag => @code{:tag} |