diff options
| author | Eli Zaretskii | 2001-10-29 19:14:50 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-10-29 19:14:50 +0000 |
| commit | 2fe41216b4b2fe01f439950d014603627a51cdfb (patch) | |
| tree | 39f4943059e55bfaa680e11262aabe5a750133ca /src | |
| parent | bcaf1c362cf783633544fab536d7ded2ba6a4fd3 (diff) | |
| download | emacs-2fe41216b4b2fe01f439950d014603627a51cdfb.tar.gz emacs-2fe41216b4b2fe01f439950d014603627a51cdfb.zip | |
(Fscroll_left, Fscroll_right): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/window.c | 16 |
2 files changed, 18 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 3c8465320ab..d981b0b74e6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-10-29 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * window.c (Fscroll_left, Fscroll_right): Doc fix. | ||
| 4 | |||
| 1 | 2001-10-29 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 5 | 2001-10-29 Pavel Jan,Bm(Bk <Pavel@Janik.cz> |
| 2 | 6 | ||
| 3 | * keyboard.c (Finput_pending_p): Fix typo in doc-string. | 7 | * keyboard.c (Finput_pending_p): Fix typo in doc-string. |
diff --git a/src/window.c b/src/window.c index 303c06c8845..0c095c1a826 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -4404,7 +4404,13 @@ showing that buffer, popping the buffer up if necessary. */) | |||
| 4404 | 4404 | ||
| 4405 | DEFUN ("scroll-left", Fscroll_left, Sscroll_left, 0, 1, "P", | 4405 | DEFUN ("scroll-left", Fscroll_left, Sscroll_left, 0, 1, "P", |
| 4406 | doc: /* Scroll selected window display ARG columns left. | 4406 | doc: /* Scroll selected window display ARG columns left. |
| 4407 | Default for ARG is window width minus 2. */) | 4407 | Default for ARG is window width minus 2. |
| 4408 | Value is the total amount of leftward horizontal scrolling in | ||
| 4409 | effect after the change. | ||
| 4410 | If `automatic-hscrolling' is non-nil, the argument ARG modifies | ||
| 4411 | a lower bound for automatic scrolling, i.e. automatic scrolling | ||
| 4412 | will not scroll a window to a column less than the value returned | ||
| 4413 | by this function. */) | ||
| 4408 | (arg) | 4414 | (arg) |
| 4409 | register Lisp_Object arg; | 4415 | register Lisp_Object arg; |
| 4410 | { | 4416 | { |
| @@ -4428,7 +4434,13 @@ Default for ARG is window width minus 2. */) | |||
| 4428 | 4434 | ||
| 4429 | DEFUN ("scroll-right", Fscroll_right, Sscroll_right, 0, 1, "P", | 4435 | DEFUN ("scroll-right", Fscroll_right, Sscroll_right, 0, 1, "P", |
| 4430 | doc: /* Scroll selected window display ARG columns right. | 4436 | doc: /* Scroll selected window display ARG columns right. |
| 4431 | Default for ARG is window width minus 2. */) | 4437 | Default for ARG is window width minus 2. |
| 4438 | Value is the total amount of leftward horizontal scrolling in | ||
| 4439 | effect after the change. | ||
| 4440 | If `automatic-hscrolling' is non-nil, the argument ARG modifies | ||
| 4441 | a lower bound for automatic scrolling, i.e. automatic scrolling | ||
| 4442 | will not scroll a window to a column less than the value returned | ||
| 4443 | by this function. */) | ||
| 4432 | (arg) | 4444 | (arg) |
| 4433 | register Lisp_Object arg; | 4445 | register Lisp_Object arg; |
| 4434 | { | 4446 | { |