# HG changeset patch # User Kevin Ryde # Date 1255907474 0 # Node ID 4f559aa9436869fc6077286b9a6cb8910df43d1b # Parent 6a6fcf3e8e4dad3db0f6469d103f9845c18d63e1 (ibuffer-confirm-operation-on): Correction to error re-throw, `err' is a pair not a list so can't use apply (Bug#4740). diff -r 6a6fcf3e8e4d -r 4f559aa94368 lisp/ibuffer.el --- a/lisp/ibuffer.el Sun Oct 18 22:25:36 2009 +0000 +++ b/lisp/ibuffer.el Sun Oct 18 23:11:14 2009 +0000 @@ -1191,7 +1191,7 @@ ;; 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)