mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
Define cl-type-definition button type as needed (Bug#28899)
* lisp/emacs-lisp/eieio-opt.el (eieio-help-constructor): Require `cl-extra' before using the `cl-type-definition' button type.
This commit is contained in:
parent
9e6889c65a
commit
607cc4e24a
@ -142,7 +142,10 @@ are not abstract."
|
||||
(find-lisp-object-file-name ctr def)))
|
||||
(when location
|
||||
(insert (substitute-command-keys " in `"))
|
||||
(help-insert-xref-button
|
||||
;; The `cl-type-definition' button type can't be autoloaded
|
||||
;; due to circularity during bootstrap (Bug#28899).
|
||||
(require 'cl-extra)
|
||||
(help-insert-xref-button
|
||||
(help-fns-short-filename location)
|
||||
'cl-type-definition ctr location 'define-type)
|
||||
(insert (substitute-command-keys "'")))
|
||||
|
Loading…
Reference in New Issue
Block a user