]> git.eshelyaron.com Git - emacs.git/commitdiff
(ibuffer-confirm-operation-on): Correction to error
authorKevin Ryde <user42@zip.com.au>
Sun, 18 Oct 2009 23:11:14 +0000 (23:11 +0000)
committerKevin Ryde <user42@zip.com.au>
Sun, 18 Oct 2009 23:11:14 +0000 (23:11 +0000)
re-throw, `err' is a pair not a list so can't use apply (Bug#4740).

lisp/ibuffer.el

index 13085f646d3ba8ebd5180413e29724a53d47df99..e8a044d2d240e966e7e598ccc07dc3aa9589e86a 100644 (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)