From 1b390c3cbf996d7d77e3c2d823ca891b8c0f09c6 Mon Sep 17 00:00:00 2001 From: dickmao Date: Sun, 6 Sep 2020 23:19:34 +0200 Subject: [PATCH] Make list-processes--refresh work for pipe processes, too * lisp/simple.el (list-processes--refresh): Don't bug out in the presence of a `pipe' process (bug#43202). --- lisp/simple.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/simple.el b/lisp/simple.el index bc92ecf8e55..86db34a5c54 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -4372,7 +4372,7 @@ Also, delete any process that is exited or signaled." ((thread-name (process-thread p))) (t "--"))) (cmd - (if (memq type '(network serial)) + (if (memq type '(network serial pipe)) (let ((contact (process-contact p t t))) (if (eq type 'network) (format "(%s %s)" -- 2.39.5