]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorKim F. Storm <storm@cua.dk>
Sun, 23 Jan 2005 13:31:53 +0000 (13:31 +0000)
committerKim F. Storm <storm@cua.dk>
Sun, 23 Jan 2005 13:31:53 +0000 (13:31 +0000)
etc/NEWS
lisp/ChangeLog
lispref/ChangeLog
src/ChangeLog

index d486365dd91b4e3c8982c31e7a44ddb145d83d8d..299ac3d9a0401120e92184a7cdabb6a8adfa251b 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2487,6 +2487,13 @@ the command `undefined'.  (In earlier Emacs versions, it used
 \f
 * 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
index e51cba7485bd107e72c05d7e9fe3f0274762977b..04af671bb87db73ccca8ecc6c0214c201ec6d051 100644 (file)
@@ -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.
 
index 12b67ac30b32b61914b9dca0d1cae8f5c85346a1..c871d5aad87b3dadec2cd3414be0f725ce8fce38 100644 (file)
@@ -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
index 10f2930b7de45fc69f6dccff629d6d2457402c80..536195baa0a0d8ec7cbfbd981f88946781b00fdf 100644 (file)
@@ -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