; Fix a typo in proced.el
* lisp/proced.el (proced-filter): Fix a typo. Reported by Armin
Darvish <armindarvish@gmail.com>. (Bug#77713)
(cherry picked from commit 3a13fb2069
)
This commit is contained in:
parent
1741812535
commit
22b646efe3
1 changed files with 1 additions and 1 deletions
|
@ -1185,7 +1185,7 @@ Return the filtered process list."
|
|||
( ;; apply predicate to each list of attributes
|
||||
(eq (car filter) 'function)
|
||||
(dolist (process process-alist)
|
||||
(if (funcall (car filter) (cdr process))
|
||||
(if (funcall (cdr filter) (cdr process))
|
||||
(push process new-alist))))
|
||||
(t ;; apply predicate to specified attribute
|
||||
(let* ((cdrfilter (cdr filter))
|
||||
|
|
Loading…
Add table
Reference in a new issue