summaryrefslogtreecommitdiff
path: root/lisp/ibuf-ext.el
diff options
context:
space:
mode:
authorTino Calancha <tino.calancha@gmail.com>2016-12-08 07:27:36 +0900
committerTino Calancha <tino.calancha@gmail.com>2016-12-08 07:27:36 +0900
commit55c1937e52625c68d5f9de332bbd47f7def5d1c0 (patch)
tree99d66663abc85ae0c260fafcad1b38697d7a3de1 /lisp/ibuf-ext.el
parentaed629d61c7257d35ac354c00e5109758fc8c14e (diff)
downloademacs-55c1937e52625c68d5f9de332bbd47f7def5d1c0.tar.gz
Fix regression introduced by commit 7b1e97f
* lisp/ibuf-ext.el (ibuffer-decompose-filter): Use cdr instead of cadr; required after commit 20f5a5b.
Diffstat (limited to 'lisp/ibuf-ext.el')
-rw-r--r--lisp/ibuf-ext.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ibuf-ext.el b/lisp/ibuf-ext.el
index e64be437adc..9ce7b5a4846 100644
--- a/lisp/ibuf-ext.el
+++ b/lisp/ibuf-ext.el
@@ -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))))))