comparison src/window.c @ 40459:34107437eb4d

(Fscroll_left, Fscroll_right): Doc fix.
author Eli Zaretskii <eliz@gnu.org>
date Mon, 29 Oct 2001 19:12:37 +0000
parents 8173ac4f5804
children 9461cfa8d18d
comparison
equal deleted inserted replaced
40458:de4e98791121 40459:34107437eb4d
4402 return Qnil; 4402 return Qnil;
4403 } 4403 }
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 {
4411 Lisp_Object result; 4417 Lisp_Object result;
4412 int hscroll; 4418 int hscroll;
4426 return result; 4432 return result;
4427 } 4433 }
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 {
4435 Lisp_Object result; 4447 Lisp_Object result;
4436 int hscroll; 4448 int hscroll;