* lisp/emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates): Add null

This commit is contained in:
Stefan Monnier 2023-11-17 18:12:03 -05:00
parent d8c1ac6c35
commit 05213345c0

View file

@ -609,6 +609,16 @@ recording whether the var has been referenced by earlier parts of the match."
(symbolp . byte-code-function-p)
(symbolp . compiled-function-p)
(symbolp . recordp)
(null . integerp)
(null . numberp)
(null . numberp)
(null . consp)
(null . arrayp)
(null . vectorp)
(null . stringp)
(null . byte-code-function-p)
(null . compiled-function-p)
(null . recordp)
(integerp . consp)
(integerp . arrayp)
(integerp . vectorp)