diff options
author | Tino Calancha <tino.calancha@gmail.com> | 2016-12-08 07:27:36 +0900 |
---|---|---|
committer | Tino Calancha <tino.calancha@gmail.com> | 2016-12-08 07:27:36 +0900 |
commit | 55c1937e52625c68d5f9de332bbd47f7def5d1c0 (patch) | |
tree | 99d66663abc85ae0c260fafcad1b38697d7a3de1 /lisp/ibuf-ext.el | |
parent | aed629d61c7257d35ac354c00e5109758fc8c14e (diff) | |
download | emacs-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.el | 2 |
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)))))) |