# HG changeset patch # User Kim F. Storm # Date 1106487113 0 # Node ID 51a8532d9066b6f8070e85654dd5bfadd1c5958d # Parent b0a08eb3f2ebd8e78d5094f7682e5168950a8861 *** empty log message *** diff -r b0a08eb3f2eb -r 51a8532d9066 etc/NEWS --- a/etc/NEWS Sun Jan 23 13:30:22 2005 +0000 +++ b/etc/NEWS Sun Jan 23 13:31:53 2005 +0000 @@ -2488,6 +2488,13 @@ * 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 (if it's modified). diff -r b0a08eb3f2eb -r 51a8532d9066 lisp/ChangeLog --- a/lisp/ChangeLog Sun Jan 23 13:30:22 2005 +0000 +++ b/lisp/ChangeLog Sun Jan 23 13:31:53 2005 +0000 @@ -1,5 +1,8 @@ 2005-01-23 Kim F. Storm + * 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 -r b0a08eb3f2eb -r 51a8532d9066 lispref/ChangeLog --- a/lispref/ChangeLog Sun Jan 23 13:30:22 2005 +0000 +++ b/lispref/ChangeLog Sun Jan 23 13:31:53 2005 +0000 @@ -1,3 +1,11 @@ +2005-01-23 Kim F. Storm + + * 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 * keymaps.texi (Changing Key Bindings): `suppress-keymap' now uses diff -r b0a08eb3f2eb -r 51a8532d9066 src/ChangeLog --- a/src/ChangeLog Sun Jan 23 13:30:22 2005 +0000 +++ b/src/ChangeLog Sun Jan 23 13:31:53 2005 +0000 @@ -1,7 +1,7 @@ 2005-01-23 Kim F. Storm * 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