diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-09-12 18:33:03 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-09-12 18:36:49 +0200 |
commit | fc4b956c7cb2fba8ed2a18865a7686c6cfa5d030 (patch) | |
tree | bdd67b63d55da0b41e367feecc20e02ada92e92d /lisp/emacs-lisp | |
parent | 79113b5e4a7d69ec0fb3401b763292d91b54632e (diff) | |
download | emacs-fc4b956c7cb2fba8ed2a18865a7686c6cfa5d030.tar.gz emacs-fc4b956c7cb2fba8ed2a18865a7686c6cfa5d030.tar.bz2 emacs-fc4b956c7cb2fba8ed2a18865a7686c6cfa5d030.zip |
; Fix symbol quoting typos
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 2 | ||||
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 4ea583d28f1..16308b3a595 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -3277,7 +3277,7 @@ the form NAME which is a shorthand for (NAME NAME)." (defun cl-struct-sequence-type (struct-type) "Return the sequence used to build STRUCT-TYPE. STRUCT-TYPE is a symbol naming a struct type. Return `record', -`vector`, or `list' if STRUCT-TYPE is a struct type, nil otherwise." +`vector', or `list' if STRUCT-TYPE is a struct type, nil otherwise." (declare (side-effect-free t) (pure t)) (cl--struct-class-type (cl--struct-get-class struct-type))) diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 51fb88502ab..677da81144f 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -624,7 +624,7 @@ Value for `adaptive-fill-function'." (if (looking-at "\\s-+\"[^\n\"]+\"\\s-*$") "")) ;; Maybe this should be discouraged/obsoleted and users should be -;; encouraged to use `lisp-data-mode` instead. +;; encouraged to use `lisp-data-mode' instead. (defun lisp-mode-variables (&optional lisp-syntax keywords-case-insensitive elisp) "Common initialization routine for lisp modes. |