emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 05213345c04: * lisp/emacs-lisp/pcase.el (pcase-mutually-exclusive


From: Stefan Monnier
Subject: master 05213345c04: * lisp/emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates): Add `null`
Date: Fri, 17 Nov 2023 18:12:17 -0500 (EST)

branch: master
commit 05213345c04d4572afec46b99a58d206a111c846
Author: Stefan Monnier <monnier@iro.umontreal.ca>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>

    * 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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]