cl-extra: Fix docstring retrieval
* lisp/emacs-lisp/cl-extra.el (cl--describe-class-slots): Fix docstring retrieval (bug#46662).
This commit is contained in:
parent
a728135a2b
commit
f8d8759059
1 changed files with 2 additions and 2 deletions
|
@ -898,8 +898,8 @@ Outputs to the current buffer."
|
|||
(list (cl-prin1-to-string (cl--slot-descriptor-name slot))
|
||||
(cl-prin1-to-string (cl--slot-descriptor-type slot))
|
||||
(cl-prin1-to-string (cl--slot-descriptor-initform slot))
|
||||
(let ((doc (alist-get :documentation
|
||||
(cl--slot-descriptor-props slot))))
|
||||
(let ((doc (plist-get (cl--slot-descriptor-props slot)
|
||||
:documentation)))
|
||||
(if (not doc) ""
|
||||
(setq has-doc t)
|
||||
(substitute-command-keys doc)))))
|
||||
|
|
Loading…
Add table
Reference in a new issue