summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2024-03-28 12:27:54 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2024-03-28 12:27:54 -0400
commitde9e913f9e2a1e01e5d091a553e98d75404a2246 (patch)
tree729416de9fd3c93e3d08bd1df4e6af717ad57531 /lisp
parent6c1a11078b194ed536db17381aad9e159e486fee (diff)
downloademacs-de9e913f9e2a1e01e5d091a553e98d75404a2246.tar.gz
* lisp/emacs-lisp/cl-macs.el (list): Predefine predicate by hand
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/cl-macs.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el
index 051cd992fc1..a84ef4a34b2 100644
--- a/lisp/emacs-lisp/cl-macs.el
+++ b/lisp/emacs-lisp/cl-macs.el
@@ -3470,6 +3470,10 @@ Of course, we really can't know that for sure, so it's just a heuristic."
(keyword . keywordp) ;Would need `keyword-with-pos`.
(natnum . natnump) ;Subtype of fixnum & bignum.
(real . numberp) ;Not clear where it would fit.
+ ;; This one is redundant, but we keep it to silence a
+ ;; warning during the early bootstrap when `cl-seq.el' gets
+ ;; loaded before `cl-preloaded.el' is defined.
+ (list . listp)
))
(put type 'cl-deftype-satisfies pred))