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
This commit is contained in:
Stefan Kangas 2022-06-18 06:31:18 +02:00
commit b28debadf3
3 changed files with 10 additions and 9 deletions

View file

@ -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)))