* bs.el (bs--show-with-configuration): Don't throw an error
if the window cannot be split; otherwise, subsequent calls
to bs-show fail, restoring a stale window config.
+2012-02-25 Juanma Barranquero <lekktu@gmail.com>
+
+ * bs.el (bs--show-with-configuration): Don't throw an error
+ if the window cannot be split; otherwise, subsequent calls to
+ bs-show fail, restoring a stale window config. (Bug#10882)
+
2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
* term/ns-win.el (global-map): Bind ns-drag-file to
(bs--restore-window-config)
(setq bs--window-config-coming-from (current-window-configuration))
(when (> (window-height (selected-window)) 7)
- (select-window (split-window-below))))
+ ;; Errors would mess with the window configuration (bug#10882).
+ (ignore-errors (select-window (split-window-below)))))
(bs-show-in-buffer liste)
(bs-message-without-log "%s" (bs--current-config-message)))))