diff lisp/window.el @ 6905:e068218e992b

(shrink-window-if-larger-than-buffer): Do nothing for side-by-side windows.
author Richard M. Stallman <rms@gnu.org>
date Sat, 16 Apr 1994 00:06:58 +0000
parents b2c5fca3c10c
children cc7cd83ccf3f
line wrap: on
line diff
--- a/lisp/window.el	Sat Apr 16 00:02:28 1994 +0000
+++ b/lisp/window.el	Sat Apr 16 00:06:58 1994 +0000
@@ -143,6 +143,7 @@
   "Shrink the WINDOW to be as small as possible to display its contents.
 Do nothing if the buffer contains more lines than the present window height,
 or if some of the window's contents are scrolled out of view,
+or if the window is not the full width of the frame,
 or if the window is the only window of its frame."
   (interactive)
   (save-excursion
@@ -163,6 +164,7 @@
 	  (mini (cdr (assq 'minibuffer (frame-parameters))))
 	  (edges (window-edges (selected-window))))
       (if (and (< 1 (count-windows))
+	       (= (window-width) (screen-width))
 	       (pos-visible-in-window-p (point-min) window)
 	       (or (not mini)
 		   (< (nth 3 edges)