From 8131c345df7e5af6a7712556b1d118bef55a35af Mon Sep 17 00:00:00 2001 From: Kevin Ryde Date: Sun, 18 Oct 2009 23:11:14 +0000 Subject: [PATCH] (ibuffer-confirm-operation-on): Correction to error re-throw, `err' is a pair not a list so can't use apply (Bug#4740). --- lisp/ibuffer.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ibuffer.el b/lisp/ibuffer.el index 13085f646d3..e8a044d2d24 100644 --- a/lisp/ibuffer.el +++ b/lisp/ibuffer.el @@ -1191,7 +1191,7 @@ a new window in the current frame, splitting vertically." ;; This definitely falls in the ;; ghetto hack category... (not (string-match "too small" (cadr err))))) - (apply #'signal err) + (signal (car err) (cdr err)) (enlarge-window 3)))))) (select-window (next-window)) (switch-to-buffer buf) -- 2.39.2