Mercurial > emacs
changeset 105665:4f559aa94368
(ibuffer-confirm-operation-on): Correction to error
re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
author | Kevin Ryde <user42@zip.com.au> |
---|---|
date | Sun, 18 Oct 2009 23:11:14 +0000 |
parents | 6a6fcf3e8e4d |
children | 933cd581fbcf |
files | lisp/ibuffer.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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)