diff options
| author | Kim F. Storm | 2005-01-23 13:31:53 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-01-23 13:31:53 +0000 |
| commit | 8f958b40ccfca8cf0c090849d75c4f42e126706a (patch) | |
| tree | d3539103c3b5b01cd4e08c4ac9ad1aaa94c268aa | |
| parent | 41ad5140cdaa904f489bab8acdb4520d00c8992a (diff) | |
| download | emacs-8f958b40ccfca8cf0c090849d75c4f42e126706a.tar.gz emacs-8f958b40ccfca8cf0c090849d75c4f42e126706a.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 7 | ||||
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lispref/ChangeLog | 8 | ||||
| -rw-r--r-- | src/ChangeLog | 2 |
4 files changed, 19 insertions, 1 deletions
| @@ -2488,6 +2488,13 @@ the command `undefined'. (In earlier Emacs versions, it used | |||
| 2488 | * Lisp Changes in Emacs 21.4 | 2488 | * Lisp Changes in Emacs 21.4 |
| 2489 | 2489 | ||
| 2490 | +++ | 2490 | +++ |
| 2491 | ** The line-move, scroll-up, and scroll-down functions will now | ||
| 2492 | modify the window vscroll to scroll through display rows that are | ||
| 2493 | taller that the height of the window, for example in the presense of | ||
| 2494 | large images. To disable this feature, Lisp code may bind the new | ||
| 2495 | variable `auto-window-vscroll' to nil. | ||
| 2496 | |||
| 2497 | +++ | ||
| 2491 | ** If a buffer sets buffer-save-without-query to non-nil, | 2498 | ** If a buffer sets buffer-save-without-query to non-nil, |
| 2492 | save-some-buffers will always save that buffer without asking | 2499 | save-some-buffers will always save that buffer without asking |
| 2493 | (if it's modified). | 2500 | (if it's modified). |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e51cba7485b..04af671bb87 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2005-01-23 Kim F. Storm <storm@cua.dk> | 1 | 2005-01-23 Kim F. Storm <storm@cua.dk> |
| 2 | 2 | ||
| 3 | * simple.el (line-move): Adapt to new return value from | ||
| 4 | pos-visible-in-window-p. | ||
| 5 | |||
| 3 | * simple.el (line-move): Fix last change. Check partial | 6 | * simple.el (line-move): Fix last change. Check partial |
| 4 | visibility at point rather than at window-start. | 7 | visibility at point rather than at window-start. |
| 5 | 8 | ||
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 12b67ac30b3..c871d5aad87 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2005-01-23 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * windows.texi (Window Start): Fix `pos-visible-in-window-p' | ||
| 4 | return value. Third element FULLY replaced by PARTIAL which | ||
| 5 | specifies number of invisible pixels if row is only partially visible. | ||
| 6 | (Textual Scrolling): Mention auto-window-vscroll. | ||
| 7 | (Vertical Scrolling): New defvar auto-window-vscroll. | ||
| 8 | |||
| 1 | 2005-01-16 Luc Teirlinck <teirllm@auburn.edu> | 9 | 2005-01-16 Luc Teirlinck <teirllm@auburn.edu> |
| 2 | 10 | ||
| 3 | * keymaps.texi (Changing Key Bindings): `suppress-keymap' now uses | 11 | * 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 @@ | |||
| 1 | 2005-01-23 Kim F. Storm <storm@cua.dk> | 1 | 2005-01-23 Kim F. Storm <storm@cua.dk> |
| 2 | 2 | ||
| 3 | * window.c (Fpos_visible_in_window_p): Simplify return value for | 3 | * window.c (Fpos_visible_in_window_p): Simplify return value for |
| 4 | for partially visible rows. | 4 | partially visible rows. |
| 5 | (window_scroll_pixel_based): Adapt to that change. | 5 | (window_scroll_pixel_based): Adapt to that change. |
| 6 | 6 | ||
| 7 | * window.c (window_scroll_pixel_based): Force moving to next line | 7 | * window.c (window_scroll_pixel_based): Force moving to next line |