diff options
| author | Chong Yidong | 2011-10-01 17:54:33 -0400 |
|---|---|---|
| committer | Chong Yidong | 2011-10-01 17:54:33 -0400 |
| commit | 550f41cdba7ebc49996d8fd17eacff86a2456f35 (patch) | |
| tree | bc1581afa5519355c866d4a550f0acfa572c45d7 /etc | |
| parent | ce3cefcca3227944d27d75e7de0f1e4f4b6d11a6 (diff) | |
| download | emacs-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/NEWS | 8 |
1 files changed, 6 insertions, 2 deletions
| @@ -288,15 +288,19 @@ If you have code that adds something to kill-emacs-hook, you should | |||
| 288 | consider if it is still appropriate to add it in the noninteractive case. | 288 | consider 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 |
| 294 | of buffer at first key-press (instead move to top/bottom of buffer) | 294 | of buffer at first key-press (instead move to top/bottom of buffer) |
| 295 | when a new variable `scroll-error-top-bottom' is non-nil. | 295 | when `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' |
| 298 | scroll a line instead of full screen. | 301 | scroll 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 |
| 301 | define it as a scroll command affected by `scroll-preserve-screen-position'. | 305 | define it as a scroll command affected by `scroll-preserve-screen-position'. |
| 302 | 306 | ||