aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1998-05-20 02:01:10 +0000
committerRichard M. Stallman1998-05-20 02:01:10 +0000
commita5fcbc4e5a86c0bdc68a6a2b9b69996c00df740d (patch)
tree199da7227c0e90d8d1883ef7dbffc02bc73f3817 /src
parent11d86ba056606fbe0e77b39af841715f1104d2bf (diff)
downloademacs-a5fcbc4e5a86c0bdc68a6a2b9b69996c00df740d.tar.gz
emacs-a5fcbc4e5a86c0bdc68a6a2b9b69996c00df740d.zip
(Fscroll_up, Fscroll_down, Fscroll_other_window): Doc fixes.
Diffstat (limited to 'src')
-rw-r--r--src/window.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/window.c b/src/window.c
index 254942d3ba4..1069e71da54 100644
--- a/src/window.c
+++ b/src/window.c
@@ -2975,7 +2975,8 @@ DEFUN ("scroll-up", Fscroll_up, Sscroll_up, 0, 1, "P",
2975 "Scroll text of current window upward ARG lines; or near full screen if no ARG.\n\ 2975 "Scroll text of current window upward ARG lines; or near full screen if no ARG.\n\
2976A near full screen is `next-screen-context-lines' less than a full screen.\n\ 2976A near full screen is `next-screen-context-lines' less than a full screen.\n\
2977Negative ARG means scroll downward.\n\ 2977Negative ARG means scroll downward.\n\
2978When calling from a program, supply a number as argument or nil.") 2978If ARG is the atom `-', scroll downward by nearly full screen.
2979When calling from a program, supply as argument a number, nil, or '-.")
2979 (arg) 2980 (arg)
2980 Lisp_Object arg; 2981 Lisp_Object arg;
2981{ 2982{
@@ -2984,10 +2985,11 @@ When calling from a program, supply a number as argument or nil.")
2984} 2985}
2985 2986
2986DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "P", 2987DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "P",
2987 "Scroll text of current window downward ARG lines; or near full screen if no ARG.\n\ 2988 "Scroll text of current window down ARG lines; or near full screen if no ARG.\n\
2988A near full screen is `next-screen-context-lines' less than a full screen.\n\ 2989A near full screen is `next-screen-context-lines' less than a full screen.\n\
2989Negative ARG means scroll upward.\n\ 2990Negative ARG means scroll upward.\n\
2990When calling from a program, supply a number as argument or nil.") 2991If ARG is the atom `-', scroll upward by nearly full screen.
2992When calling from a program, supply as argument a number, nil, or '-.")
2991 (arg) 2993 (arg)
2992 Lisp_Object arg; 2994 Lisp_Object arg;
2993{ 2995{
@@ -3040,9 +3042,11 @@ showing that buffer is used.")
3040 3042
3041DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P", 3043DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P",
3042 "Scroll next window upward ARG lines; or near full screen if no ARG.\n\ 3044 "Scroll next window upward ARG lines; or near full screen if no ARG.\n\
3045A near full screen is `next-screen-context-lines' less than a full screen.
3043The next window is the one below the current one; or the one at the top\n\ 3046The next window is the one below the current one; or the one at the top\n\
3044if the current one is at the bottom. Negative ARG means scroll downward.\n\ 3047if the current one is at the bottom. Negative ARG means scroll downward.\n\
3045When calling from a program, supply a number as argument or nil.\n\ 3048If ARG is the atom `-', scroll downward by nearly full screen.
3049When calling from a program, supply as argument a number, nil, or '-.\n\
3046\n\ 3050\n\
3047If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\ 3051If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\
3048specifies the window to scroll.\n\ 3052specifies the window to scroll.\n\