aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorChong Yidong2011-10-01 17:54:33 -0400
committerChong Yidong2011-10-01 17:54:33 -0400
commit550f41cdba7ebc49996d8fd17eacff86a2456f35 (patch)
treebc1581afa5519355c866d4a550f0acfa572c45d7 /etc
parentce3cefcca3227944d27d75e7de0f1e4f4b6d11a6 (diff)
downloademacs-550f41cdba7ebc49996d8fd17eacff86a2456f35.tar.gz
emacs-550f41cdba7ebc49996d8fd17eacff86a2456f35.zip
Document some Emacs 24 scrolling changes.
* doc/emacs/basic.texi (Moving Point): * doc/emacs/custom.texi (Mouse Buttons): * doc/emacs/rmail.texi (Rmail Scrolling): * doc/emacs/search.texi (Isearch Scroll): * doc/emacs/display.texi (Scrolling): Replace scroll-up/down with scroll-up/down-command. Fix scroll-preserve-screen-position description. Document scroll-error-top-bottom. * doc/lispref/windows.texi (Textual Scrolling): Document scroll-up-command, scroll-down-command, scroll-error-top-bottom, and the scroll-command symbol property.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS8
1 files changed, 6 insertions, 2 deletions
diff --git a/etc/NEWS b/etc/NEWS
index f6901e3b88f..ae2f137e1f9 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -288,15 +288,19 @@ If you have code that adds something to kill-emacs-hook, you should
288consider if it is still appropriate to add it in the noninteractive case. 288consider if it is still appropriate to add it in the noninteractive case.
289 289
290** Scrolling changes 290** Scrolling changes
291 291+++
292*** New scrolling commands `scroll-up-command' and `scroll-down-command' 292*** New scrolling commands `scroll-up-command' and `scroll-down-command'
293(bound to C-v/[next] and M-v/[prior]) do not signal errors at top/bottom 293(bound to C-v/[next] and M-v/[prior]) do not signal errors at top/bottom
294of buffer at first key-press (instead move to top/bottom of buffer) 294of buffer at first key-press (instead move to top/bottom of buffer)
295when a new variable `scroll-error-top-bottom' is non-nil. 295when `scroll-error-top-bottom' is non-nil.
296
297+++
298*** New variable `scroll-error-top-bottom' (see above).
296 299
297*** New scrolling commands `scroll-up-line' and `scroll-down-line' 300*** New scrolling commands `scroll-up-line' and `scroll-down-line'
298scroll a line instead of full screen. 301scroll a line instead of full screen.
299 302
303+++
300*** New property `scroll-command' should be set on a command's symbol to 304*** New property `scroll-command' should be set on a command's symbol to
301define it as a scroll command affected by `scroll-preserve-screen-position'. 305define it as a scroll command affected by `scroll-preserve-screen-position'.
302 306