1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-23 13:02:00 -08:00

(Fscroll_left, Fscroll_right): Doc fix.

This commit is contained in:
Eli Zaretskii 2001-10-29 19:00:06 +00:00
parent bc05b18656
commit 33c35d7958
2 changed files with 18 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2001-10-29 Eli Zaretskii <eliz@is.elta.co.il>
* window.c (Fscroll_left, Fscroll_right): Doc fix.
2001-10-29 Gerd Moellmann <gerd@gnu.org>
* xterm.c (x_display_and_set_cursor): If cursor_in_echo_area,

View file

@ -4430,7 +4430,13 @@ showing that buffer, popping the buffer up if necessary.")
DEFUN ("scroll-left", Fscroll_left, Sscroll_left, 0, 1, "P",
"Scroll selected window display ARG columns left.\n\
Default for ARG is window width minus 2.")
Default for ARG is window width minus 2.\n\
Value is the total amount of leftward horizontal scrolling in\n\
effect after the change.\n\
If `automatic-hscrolling' is non-nil, the argument ARG modifies\n\
a lower bound for automatic scrolling, i.e. automatic scrolling\n\
will not scroll a window to a column less than the value returned\n\
by this function.")
(arg)
register Lisp_Object arg;
{
@ -4454,7 +4460,13 @@ Default for ARG is window width minus 2.")
DEFUN ("scroll-right", Fscroll_right, Sscroll_right, 0, 1, "P",
"Scroll selected window display ARG columns right.\n\
Default for ARG is window width minus 2.")
Default for ARG is window width minus 2.\n\
Value is the total amount of leftward horizontal scrolling in\n\
effect after the change.\n\
If `automatic-hscrolling' is non-nil, the argument ARG modifies\n\
a lower bound for automatic scrolling, i.e. automatic scrolling\n\
will not scroll a window to a column less than the value returned\n\
by this function.")
(arg)
register Lisp_Object arg;
{