emacs-diffs
[Top][All Lists]
Advanced

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

master e53428994e: Recognize processes as a CL type again


From: Basil L. Contovounesios
Subject: master e53428994e: Recognize processes as a CL type again
Date: Sat, 11 Jun 2022 12:27:31 -0400 (EDT)

branch: master
commit e53428994e31f22f4f93eef3da250ac4d6dda93a
Author: Basil L. Contovounesios <contovob@tcd.ie>
Commit: Basil L. Contovounesios <contovob@tcd.ie>

    Recognize processes as a CL type again
    
    For discussion, see:
    https://lists.gnu.org/r/emacs-devel/2022-06/msg00567.html
    
    * lisp/emacs-lisp/cl-macs.el (cl-deftype-satisfies): Include process
    as a type, to avoid cl-typep complaining about process objects.
---
 lisp/emacs-lisp/cl-macs.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el
index ada4f0344d..10043ba280 100644
--- a/lisp/emacs-lisp/cl-macs.el
+++ b/lisp/emacs-lisp/cl-macs.el
@@ -3422,6 +3422,7 @@ Of course, we really can't know that for sure, so it's 
just a heuristic."
                  (number       . numberp)
                  (null         . null)
                  (overlay      . overlayp)
+                 (process      . processp)
                  (real         . numberp)
                  (sequence     . sequencep)
                  (subr         . subrp)



reply via email to

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