From 55c1937e52625c68d5f9de332bbd47f7def5d1c0 Mon Sep 17 00:00:00 2001 From: Tino Calancha Date: Thu, 8 Dec 2016 07:27:36 +0900 Subject: [PATCH] Fix regression introduced by commit 7b1e97f * lisp/ibuf-ext.el (ibuffer-decompose-filter): Use cdr instead of cadr; required after commit 20f5a5b. --- lisp/ibuf-ext.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)))))) -- 2.39.2