1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(ibuffer-confirm-operation-on): Correction to error

re-throw, `err' is a pair not a list so can't use apply (Bug#4740).
This commit is contained in:
Kevin Ryde 2009-10-18 23:11:14 +00:00
parent 7346a407f4
commit 8131c345df

View file

@ -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)