mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
Fix list-processes typo with thread-name
* lisp/simple.el (list-processes--refresh): Don’t assume thread-name succeeds (Bug#36163).
This commit is contained in:
parent
c42c4e9c56
commit
ef744119a7
1 changed files with 2 additions and 1 deletions
|
|
@ -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)))
|
||||
|
|
|
|||
Loading…
Reference in a new issue