diff options
author | Andrea Corallo <acorallo@gnu.org> | 2024-02-28 20:38:30 +0100 |
---|---|---|
committer | Andrea Corallo <acorallo@gnu.org> | 2024-02-28 20:44:32 +0100 |
commit | 05195e129fc933db32c9e08a155a94bfa4d75b54 (patch) | |
tree | c5074ec2792dbe875d55e683ad61a22ca27bdcff /lisp/emacs-lisp | |
parent | 91b90885aca17b5140b56fa3b5c4960baf8672a1 (diff) | |
download | emacs-05195e129fc933db32c9e08a155a94bfa4d75b54.tar.gz emacs-05195e129fc933db32c9e08a155a94bfa4d75b54.tar.bz2 emacs-05195e129fc933db32c9e08a155a94bfa4d75b54.zip |
* lisp/emacs-lisp/cl-macs.el (cl-deftype-satisfies): Add 'symbol-with-pos'.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index ddc9775bcce..be477b7a6df 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -3496,6 +3496,7 @@ Of course, we really can't know that for sure, so it's just a heuristic." (subr . subrp) (string . stringp) (symbol . symbolp) + (symbol-with-pos . symbol-with-pos-p) (vector . vectorp) (window . windowp) ;; FIXME: Do we really want to consider these types? |