From e53428994e31f22f4f93eef3da250ac4d6dda93a Mon Sep 17 00:00:00 2001 From: "Basil L. Contovounesios" Date: Sat, 11 Jun 2022 15:50:09 +0300 Subject: [PATCH] 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 ada4f0344d3..10043ba2807 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) -- 2.39.2