ibuf-ext.el: Fix previous change
* lisp/ibuf-ext.el (ibuffer-generate-filter-groups): Use `cl-destructuring-bind' instead of `cl-multiple-value-bind', as we don't want to assume how multiple-values are implemented, and we know a list is being returned anyway. Suggested by Stefan Monnier.
This commit is contained in:
parent
3dd7de625f
commit
9c0ac88199
1 changed files with 1 additions and 1 deletions
|
@ -760,7 +760,7 @@ specification, with the same structure as an element of the list
|
|||
(i 0))
|
||||
(dolist (filtergroup filter-group-alist)
|
||||
(let ((filterset (cdr filtergroup)))
|
||||
(cl-multiple-value-bind (hip-crowd lamers)
|
||||
(cl-destructuring-bind (hip-crowd lamers)
|
||||
(ibuffer-split-list (lambda (bufmark)
|
||||
(ibuffer-included-in-filters-p (car bufmark)
|
||||
filterset))
|
||||
|
|
Loading…
Add table
Reference in a new issue