From 8f958b40ccfca8cf0c090849d75c4f42e126706a Mon Sep 17 00:00:00 2001
From: "Kim F. Storm" <storm@cua.dk>
Date: Sun, 23 Jan 2005 13:31:53 +0000
Subject: [PATCH] *** empty log message ***

---
 etc/NEWS          | 7 +++++++
 lisp/ChangeLog    | 3 +++
 lispref/ChangeLog | 8 ++++++++
 src/ChangeLog     | 2 +-
 4 files changed, 19 insertions(+), 1 deletion(-)

diff --git a/etc/NEWS b/etc/NEWS
index d486365dd91..299ac3d9a04 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2487,6 +2487,13 @@ the command `undefined'.  (In earlier Emacs versions, it used
 
 * Lisp Changes in Emacs 21.4
 
++++
+** The line-move, scroll-up, and scroll-down functions will now
+modify the window vscroll to scroll through display rows that are
+taller that the height of the window, for example in the presense of
+large images.  To disable this feature, Lisp code may bind the new
+variable `auto-window-vscroll' to nil.
+
 +++
 ** If a buffer sets buffer-save-without-query to non-nil,
 save-some-buffers will always save that buffer without asking
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e51cba7485b..04af671bb87 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
 2005-01-23  Kim F. Storm  <storm@cua.dk>
 
+	* simple.el (line-move): Adapt to new return value from
+	pos-visible-in-window-p.
+
 	* simple.el (line-move): Fix last change.  Check partial
 	visibility at point rather than at window-start.
 
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 12b67ac30b3..c871d5aad87 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,11 @@
+2005-01-23  Kim F. Storm  <storm@cua.dk>
+
+	* windows.texi (Window Start): Fix `pos-visible-in-window-p'
+	return value.  Third element FULLY replaced by PARTIAL which
+	specifies number of invisible pixels if row is only partially visible.
+	(Textual Scrolling): Mention auto-window-vscroll.
+	(Vertical Scrolling): New defvar auto-window-vscroll.
+
 2005-01-16  Luc Teirlinck  <teirllm@auburn.edu>
 
 	* keymaps.texi (Changing Key Bindings): `suppress-keymap' now uses
diff --git a/src/ChangeLog b/src/ChangeLog
index 10f2930b7de..536195baa0a 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,7 +1,7 @@
 2005-01-23  Kim F. Storm  <storm@cua.dk>
 
 	* window.c (Fpos_visible_in_window_p): Simplify return value for
-	for partially visible rows.
+	partially visible rows.
 	(window_scroll_pixel_based): Adapt to that change.
 
 	* window.c (window_scroll_pixel_based): Force moving to next line
-- 
2.39.5