From: Stefan Monnier Date: Fri, 17 Nov 2023 23:12:03 +0000 (-0500) Subject: * lisp/emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates): Add `null` X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=05213345c04d4572afec46b99a58d206a111c846;p=emacs.git * lisp/emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates): Add `null` --- diff --git a/lisp/emacs-lisp/pcase.el b/lisp/emacs-lisp/pcase.el index 1c5ce5169ab..d5f7249e527 100644 --- a/lisp/emacs-lisp/pcase.el +++ b/lisp/emacs-lisp/pcase.el @@ -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)