From: Basil L. Contovounesios Date: Sat, 11 Jun 2022 12:50:09 +0000 (+0300) Subject: Recognize processes as a CL type again X-Git-Tag: emacs-29.0.90~1910^2~68 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e53428994e31f22f4f93eef3da250ac4d6dda93a;p=emacs.git 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. --- 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)