mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-03 10:53:23 +00:00
; * lisp/proced.el (proced-update): Support non-symbol proced-filter values
Avoid errors like "Wrong type argument: symbolp, ((args . "REGEXP"))" when `proced-filter' is a list of elementary filters.
This commit is contained in:
parent
a002ca79ee
commit
d70f1e0cfe
1 changed files with 1 additions and 1 deletions
|
@ -2027,7 +2027,7 @@ After updating a displayed Proced buffer run the normal hook
|
|||
(setq mode-name
|
||||
(concat "Proced"
|
||||
(if proced-filter
|
||||
(concat ": " (symbol-name proced-filter))
|
||||
(concat ": " (format "%s" proced-filter))
|
||||
"")
|
||||
(if proced-sort
|
||||
(let* ((key (if (consp proced-sort) (car proced-sort)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue