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:
parent
7346a407f4
commit
8131c345df
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue