diff options
| author | Richard M. Stallman | 1998-05-20 02:01:10 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-05-20 02:01:10 +0000 |
| commit | a5fcbc4e5a86c0bdc68a6a2b9b69996c00df740d (patch) | |
| tree | 199da7227c0e90d8d1883ef7dbffc02bc73f3817 /src | |
| parent | 11d86ba056606fbe0e77b39af841715f1104d2bf (diff) | |
| download | emacs-a5fcbc4e5a86c0bdc68a6a2b9b69996c00df740d.tar.gz emacs-a5fcbc4e5a86c0bdc68a6a2b9b69996c00df740d.zip | |
(Fscroll_up, Fscroll_down, Fscroll_other_window): Doc fixes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/window.c | 12 |
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\ |
| 2976 | A near full screen is `next-screen-context-lines' less than a full screen.\n\ | 2976 | A near full screen is `next-screen-context-lines' less than a full screen.\n\ |
| 2977 | Negative ARG means scroll downward.\n\ | 2977 | Negative ARG means scroll downward.\n\ |
| 2978 | When calling from a program, supply a number as argument or nil.") | 2978 | If ARG is the atom `-', scroll downward by nearly full screen. |
| 2979 | When 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 | ||
| 2986 | DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "P", | 2987 | DEFUN ("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\ |
| 2988 | A near full screen is `next-screen-context-lines' less than a full screen.\n\ | 2989 | A near full screen is `next-screen-context-lines' less than a full screen.\n\ |
| 2989 | Negative ARG means scroll upward.\n\ | 2990 | Negative ARG means scroll upward.\n\ |
| 2990 | When calling from a program, supply a number as argument or nil.") | 2991 | If ARG is the atom `-', scroll upward by nearly full screen. |
| 2992 | When 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 | ||
| 3041 | DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P", | 3043 | DEFUN ("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\ |
| 3045 | A near full screen is `next-screen-context-lines' less than a full screen. | ||
| 3043 | The next window is the one below the current one; or the one at the top\n\ | 3046 | The next window is the one below the current one; or the one at the top\n\ |
| 3044 | if the current one is at the bottom. Negative ARG means scroll downward.\n\ | 3047 | if the current one is at the bottom. Negative ARG means scroll downward.\n\ |
| 3045 | When calling from a program, supply a number as argument or nil.\n\ | 3048 | If ARG is the atom `-', scroll downward by nearly full screen. |
| 3049 | When calling from a program, supply as argument a number, nil, or '-.\n\ | ||
| 3046 | \n\ | 3050 | \n\ |
| 3047 | If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\ | 3051 | If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\ |
| 3048 | specifies the window to scroll.\n\ | 3052 | specifies the window to scroll.\n\ |