summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorAndrea Corallo <acorallo@gnu.org>2024-04-10 15:27:46 +0200
committerAndrea Corallo <acorallo@gnu.org>2024-04-10 15:30:08 +0200
commitf4711811298b320ea6875e635a7346f3bc23a603 (patch)
tree6615d189690b49603a775d8dcef9b8cf190bec3f /lisp/emacs-lisp
parentf2f13fa630bd2658ea3f90c4362fe6201d32e67e (diff)
downloademacs-f4711811298b320ea6875e635a7346f3bc23a603.tar.gz
emacs-f4711811298b320ea6875e635a7346f3bc23a603.tar.bz2
emacs-f4711811298b320ea6875e635a7346f3bc23a603.zip
* lisp/emacs-lisp/cl-macs.el (cl-typep): Add docstring.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/cl-macs.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el
index a84ef4a34b2..1350e474d6a 100644
--- a/lisp/emacs-lisp/cl-macs.el
+++ b/lisp/emacs-lisp/cl-macs.el
@@ -3479,6 +3479,7 @@ Of course, we really can't know that for sure, so it's just a heuristic."
;;;###autoload
(define-inline cl-typep (val type)
+ "Return t if VAL is of type TYPE, nil otherwise."
(inline-letevals (val)
(pcase (inline-const-val type)
((and `(,name . ,args) (guard (get name 'cl-deftype-handler)))