changeset 4364:69e5c2373d37

(shrink-window-if-larger-than-buffer): Do nothing if the window is the only window of its frame. If the buffer ends in newline and point is not at the end of the buffer, don't display last (empty) line.
author Richard M. Stallman <rms@gnu.org>
date Sat, 31 Jul 1993 01:08:48 +0000
parents f593b231193f
children f3506c9677f3
files lisp/window.el
diffstat 1 files changed, 12 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/window.el	Sat Jul 31 01:07:38 1993 +0000
+++ b/lisp/window.el	Sat Jul 31 01:08:48 1993 +0000
@@ -139,7 +139,8 @@
 (defun shrink-window-if-larger-than-buffer (&optional window)
   "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 some of the window's contents are scrolled out of view,
+or if the window is the only window of its frame."
   (interactive)
   (save-excursion
     (set-buffer (window-buffer window))
@@ -147,16 +148,24 @@
 	  (buffer-file-name buffer-file-name)
 	  (p (point))
 	  (n 0)
+	  (ignore-final-newline
+	   ;; If buffer ends with a newline, ignore it when counting height
+	   ;; unless point is after it.
+	   (and (not (eobp))
+		(eq ?\n (char-after (1- (point-max))))))
 	  (window-min-height 0)
 	  (buffer-read-only nil)
 	  (modified (buffer-modified-p))
 	  (buffer (current-buffer)))
-      (if (pos-visible-in-window-p (point-min))
+      (if (and (< 1 (count-windows))
+	       (pos-visible-in-window-p (point-min)))
 	  (unwind-protect
 	      (progn
 		(select-window (or window w))
 		(goto-char (point-min))
-		(while (pos-visible-in-window-p (point-max))
+		(while (pos-visible-in-window-p
+			(- (point-max)
+			   (if ignore-final-newline 1 0)))
 		  ;; defeat file locking... don't try this at home, kids!
 		  (setq buffer-file-name nil)
 		  (insert ?\n) (setq n (1+ n)))