aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTino Calancha2016-12-08 07:27:36 +0900
committerTino Calancha2016-12-08 07:27:36 +0900
commit55c1937e52625c68d5f9de332bbd47f7def5d1c0 (patch)
tree99d66663abc85ae0c260fafcad1b38697d7a3de1
parentaed629d61c7257d35ac354c00e5109758fc8c14e (diff)
downloademacs-55c1937e52625c68d5f9de332bbd47f7def5d1c0.tar.gz
emacs-55c1937e52625c68d5f9de332bbd47f7def5d1c0.zip
Fix regression introduced by commit 7b1e97f
* lisp/ibuf-ext.el (ibuffer-decompose-filter): Use cdr instead of cadr; required after commit 20f5a5b.
-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]."
941 (unless data 941 (unless data
942 (ibuffer-filter-disable) 942 (ibuffer-filter-disable)
943 (error "Unknown saved filter %s" head)) 943 (error "Unknown saved filter %s" head))
944 (append (cadr data) tail))) 944 (append (cdr data) tail)))
945 (`not (cons head tail)) 945 (`not (cons head tail))
946 (_ 946 (_
947 (error "Filter type %s is not compound" (caar filters)))))) 947 (error "Filter type %s is not compound" (caar filters))))))