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:
parent
bc05b18656
commit
33c35d7958
2 changed files with 18 additions and 2 deletions
|
|
@ -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,
|
||||
|
|
|
|||
16
src/window.c
16
src/window.c
|
|
@ -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;
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue