projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aed629d
)
Fix regression introduced by commit 7b1e97f
author
Tino Calancha
<tino.calancha@gmail.com>
Wed, 7 Dec 2016 22:27:36 +0000
(07:27 +0900)
committer
Tino Calancha
<tino.calancha@gmail.com>
Wed, 7 Dec 2016 22:27:36 +0000
(07:27 +0900)
* lisp/ibuf-ext.el (ibuffer-decompose-filter): Use cdr instead
of cadr; required after commit
20f5a5b
.
lisp/ibuf-ext.el
patch
|
blob
|
history
diff --git
a/lisp/ibuf-ext.el
b/lisp/ibuf-ext.el
index e64be437adc696fff33a9e4cca555d17e30cb693..9ce7b5a484681ffa27777be68171029f94acf665 100644
(file)
--- 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 (c
a
dr data) tail)))
+ (append (cdr data) tail)))
(`not (cons head tail))
(_
(error "Filter type %s is not compound" (caar filters))))))