Fix regression introduced by commit 7b1e97f
* lisp/ibuf-ext.el (ibuffer-decompose-filter): Use cdr instead
of cadr; required after commit 20f5a5b
.
This commit is contained in:
parent
aed629d61c
commit
55c1937e52
1 changed files with 1 additions and 1 deletions
|
@ -941,7 +941,7 @@ turned into two separate filters [name: foo] and [mode: bar-mode]."
|
|||
(unless data
|
||||
(ibuffer-filter-disable)
|
||||
(error "Unknown saved filter %s" head))
|
||||
(append (cadr data) tail)))
|
||||
(append (cdr data) tail)))
|
||||
(`not (cons head tail))
|
||||
(_
|
||||
(error "Filter type %s is not compound" (caar filters))))))
|
||||
|
|
Loading…
Add table
Reference in a new issue