From 05213345c04d4572afec46b99a58d206a111c846 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 17 Nov 2023 18:12:03 -0500 Subject: [PATCH] * lisp/emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates): Add `null` --- lisp/emacs-lisp/pcase.el | 10 ++++++++++ 1 file changed, 10 insertions(+) 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) -- 2.39.2