summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/cl-macs.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2022-06-18 06:31:18 +0200
committerStefan Kangas <stefan@marxist.se>2022-06-18 06:31:18 +0200
commitb28debadf3ada1645ea3ea135d67189cf52fdc11 (patch)
tree66b007762c029a5ebc85ab7ec0b9c7efcd799baa /lisp/emacs-lisp/cl-macs.el
parent06576d6a16fa61f6f1d5031754145a92ab41aa9b (diff)
parentd671cd57c488ec792997fd4051440187dec3434f (diff)
downloademacs-b28debadf3ada1645ea3ea135d67189cf52fdc11.tar.gz
emacs-b28debadf3ada1645ea3ea135d67189cf52fdc11.tar.bz2
emacs-b28debadf3ada1645ea3ea135d67189cf52fdc11.zip
Merge from origin/emacs-28
d671cd57c4 Update cl-struct-sequence-type doc string 017bdb1611 Fix a tagging problem in tramp.texi e0bac17bbc Mention face quirks after the final line in the lispref ma... ad74677cf3 Delete reference to obsolete library complete.el
Diffstat (limited to 'lisp/emacs-lisp/cl-macs.el')
-rw-r--r--lisp/emacs-lisp/cl-macs.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el
index 10043ba2807..6646167b92b 100644
--- a/lisp/emacs-lisp/cl-macs.el
+++ b/lisp/emacs-lisp/cl-macs.el
@@ -3337,8 +3337,9 @@ 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."
+STRUCT-TYPE is a symbol naming a struct type. Return values are
+either `vector', `list' or nil (and the latter indicates a
+`record' struct type."
(declare (side-effect-free t) (pure t))
(cl--struct-class-type (cl--struct-get-class struct-type)))