; * lisp/proced.el (proced-update): Display read syntax for filter value

Also eliminate unnecessary concat.
This commit is contained in:
Phil Sainty 2025-07-05 22:35:55 +12:00
parent 35d32c0dd8
commit e55f61d1af

View file

@ -2027,7 +2027,7 @@ After updating a displayed Proced buffer run the normal hook
(setq mode-name
(concat "Proced"
(if proced-filter
(concat ": " (format "%s" proced-filter))
(format ": %S" proced-filter)
"")
(if proced-sort
(let* ((key (if (consp proced-sort) (car proced-sort)