aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2001-10-29 19:14:50 +0000
committerEli Zaretskii2001-10-29 19:14:50 +0000
commit2fe41216b4b2fe01f439950d014603627a51cdfb (patch)
tree39f4943059e55bfaa680e11262aabe5a750133ca /src
parentbcaf1c362cf783633544fab536d7ded2ba6a4fd3 (diff)
downloademacs-2fe41216b4b2fe01f439950d014603627a51cdfb.tar.gz
emacs-2fe41216b4b2fe01f439950d014603627a51cdfb.zip
(Fscroll_left, Fscroll_right): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/window.c16
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 @@
12001-10-29 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * window.c (Fscroll_left, Fscroll_right): Doc fix.
4
12001-10-29 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 52001-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
4405DEFUN ("scroll-left", Fscroll_left, Sscroll_left, 0, 1, "P", 4405DEFUN ("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.
4407Default for ARG is window width minus 2. */) 4407Default for ARG is window width minus 2.
4408Value is the total amount of leftward horizontal scrolling in
4409effect after the change.
4410If `automatic-hscrolling' is non-nil, the argument ARG modifies
4411a lower bound for automatic scrolling, i.e. automatic scrolling
4412will not scroll a window to a column less than the value returned
4413by 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
4429DEFUN ("scroll-right", Fscroll_right, Sscroll_right, 0, 1, "P", 4435DEFUN ("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.
4431Default for ARG is window width minus 2. */) 4437Default for ARG is window width minus 2.
4438Value is the total amount of leftward horizontal scrolling in
4439effect after the change.
4440If `automatic-hscrolling' is non-nil, the argument ARG modifies
4441a lower bound for automatic scrolling, i.e. automatic scrolling
4442will not scroll a window to a column less than the value returned
4443by this function. */)
4432 (arg) 4444 (arg)
4433 register Lisp_Object arg; 4445 register Lisp_Object arg;
4434{ 4446{