2001-08-09 Gerd Moellmann <gerd@gnu.org>
+ * mouse.el (mouse-delete-window): Do nothing if frame has just
+ one window.
+
* bindings.el (minor-mode-alist): Use mode-line-minor-mode-keymap
for the minor mode name.
(defun mouse-delete-window (click)
"Delete the window you click on.
-If the frame has just one window, bury the current buffer instead.
+Do nothing if the frame has just one window.
This command must be bound to a mouse click."
(interactive "e")
- (if (one-window-p t)
- (bury-buffer)
+ (unless (one-window-p t)
(mouse-minibuffer-check click)
(delete-window (posn-window (event-start click)))))