emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master ef74411: Fix list-processes typo with thread-name


From: Paul Eggert
Subject: [Emacs-diffs] master ef74411: Fix list-processes typo with thread-name
Date: Tue, 11 Jun 2019 11:25:26 -0400 (EDT)

branch: master
commit ef744119a7cbd0692c53704604e9bb6345c371b6
Author: Pip Cet <address@hidden>
Commit: Paul Eggert <address@hidden>

    Fix list-processes typo with thread-name
    
    * lisp/simple.el (list-processes--refresh):
    Don’t assume thread-name succeeds (Bug#36163).
---
 lisp/simple.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lisp/simple.el b/lisp/simple.el
index 6bc3bc5..5e9d13f 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -4102,7 +4102,8 @@ Also, delete any process that is exited or signaled."
                       (null (process-thread p))
                       (not (fboundp 'thread-name))) "--")
                     ((eq (process-thread p) main-thread) "Main")
-                    ((thread-name (process-thread p)))))
+                   ((thread-name (process-thread p)))
+                   (t "--")))
                  (cmd
                   (if (memq type '(network serial))
                       (let ((contact (process-contact p t)))



reply via email to

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