diff options
| author | Basil L. Contovounesios | 2022-06-11 15:50:09 +0300 |
|---|---|---|
| committer | Basil L. Contovounesios | 2022-06-11 19:21:55 +0300 |
| commit | e53428994e31f22f4f93eef3da250ac4d6dda93a (patch) | |
| tree | 432797486f93770e766b5de72fe60e63e22de16b | |
| parent | eec9919b999837128e910d5774ce7a6588ae8886 (diff) | |
| download | emacs-e53428994e31f22f4f93eef3da250ac4d6dda93a.tar.gz emacs-e53428994e31f22f4f93eef3da250ac4d6dda93a.zip | |
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.
| -rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 1 |
1 files changed, 1 insertions, 0 deletions
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." | |||
| 3422 | (number . numberp) | 3422 | (number . numberp) |
| 3423 | (null . null) | 3423 | (null . null) |
| 3424 | (overlay . overlayp) | 3424 | (overlay . overlayp) |
| 3425 | (process . processp) | ||
| 3425 | (real . numberp) | 3426 | (real . numberp) |
| 3426 | (sequence . sequencep) | 3427 | (sequence . sequencep) |
| 3427 | (subr . subrp) | 3428 | (subr . subrp) |