From 0a5898c3dd2e32431268bc2bcf3536d4cd62ad39 Mon Sep 17 00:00:00 2001 From: Tino Calancha Date: Thu, 15 Dec 2016 15:02:32 +0900 Subject: [PATCH] * lisp/ibuf-macs.el (define-ibuffer-filter): Wrap ,@body in a progn. --- lisp/ibuf-macs.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ibuf-macs.el b/lisp/ibuf-macs.el index 3c95f4c44ce..fc8c127c1c3 100644 --- a/lisp/ibuf-macs.el +++ b/lisp/ibuf-macs.el @@ -304,7 +304,7 @@ bound to the current value of the filter. (push (list ',name ,description (lambda (buf qualifier) (condition-case nil - ,@body + (progn ,@body) (error (ibuffer-pop-filter) (when (eq ',name 'predicate) (error "Wrong filter predicate: %S" -- 2.11.4.GIT