diff options
author | Andrea Corallo <andcor03@e132096.arm.com> | 2024-03-01 18:56:02 +0100 |
---|---|---|
committer | Andrea Corallo <andcor03@e132096.arm.com> | 2024-03-01 18:58:44 +0100 |
commit | 8b96503b6e8514f1f9f92895a0707c78b1bbd1fd (patch) | |
tree | c9175c70a65333a245b87b41cb79eaeff56059d4 /lisp/emacs-lisp | |
parent | b2d18ff944ae374fa03579ca2574f1fba8ae2e4b (diff) | |
download | emacs-8b96503b6e8514f1f9f92895a0707c78b1bbd1fd.tar.gz emacs-8b96503b6e8514f1f9f92895a0707c78b1bbd1fd.tar.bz2 emacs-8b96503b6e8514f1f9f92895a0707c78b1bbd1fd.zip |
* lisp/emacs-lisp/cl-preloaded.el (cl--typeof-types): Define as var.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-preloaded.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl-preloaded.el b/lisp/emacs-lisp/cl-preloaded.el index 30753bcd5c5..b2b921192ff 100644 --- a/lisp/emacs-lisp/cl-preloaded.el +++ b/lisp/emacs-lisp/cl-preloaded.el @@ -92,7 +92,7 @@ Each sublist is in the form (TYPE . DIRECT_SUBTYPES)" for child in children do (cl-pushnew parent (gethash child cl--direct-supertypes-of-type)))) -(defconst cl--typeof-types nil +(defvar cl--typeof-types nil "Alist of supertypes. Each element has the form (TYPE . SUPERTYPES) where TYPE is one of the symbols returned by `type-of', and SUPERTYPES is the list of its |