diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-09-05 16:52:11 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-09-05 16:52:14 +0200 |
commit | c5b654b3f105b8be7e7bcf3ad3f424cf38afd8f5 (patch) | |
tree | 0d877ee5674bcdc2610919e262717d8c7a038675 /lisp/emacs-lisp | |
parent | 7c7a47b86ebfa05734ebf67d49012c8e336801a6 (diff) | |
download | emacs-c5b654b3f105b8be7e7bcf3ad3f424cf38afd8f5.tar.gz emacs-c5b654b3f105b8be7e7bcf3ad3f424cf38afd8f5.tar.bz2 emacs-c5b654b3f105b8be7e7bcf3ad3f424cf38afd8f5.zip |
Autoload cl-struct-slot-info
* lisp/emacs-lisp/cl-macs.el (cl-struct-slot-info): Autoload
(bug#50301).
* test/lisp/emacs-lisp/memory-report-tests.el: Don't require cl-macs.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index d878af4d84a..4ea583d28f1 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -3288,6 +3288,7 @@ STRUCT-TYPE is a symbol naming a struct type. Return `record', (push (cdr x) res)) (nreverse res))) +;;;###autoload (defun cl-struct-slot-info (struct-type) "Return a list of slot names of struct STRUCT-TYPE. Each entry is a list (SLOT-NAME . OPTS), where SLOT-NAME is a |