diff options
| author | Karl Heuer | 1998-05-30 14:47:15 +0000 |
|---|---|---|
| committer | Karl Heuer | 1998-05-30 14:47:15 +0000 |
| commit | dd394ff9dd8d4eade6149f06f8fde9d86fe8fdde (patch) | |
| tree | 88f5f9381ea350a7b922430c38cafb983a6508c1 | |
| parent | 64c9affcc455c58a570e1c72f572ee5be715ac2a (diff) | |
| download | emacs-dd394ff9dd8d4eade6149f06f8fde9d86fe8fdde.tar.gz emacs-dd394ff9dd8d4eade6149f06f8fde9d86fe8fdde.zip | |
(Fscroll_up, Fscroll_down, Fscroll_other_window): Doc fix.
| -rw-r--r-- | src/window.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/window.c b/src/window.c index 50541f094db..06d5fcf26fe 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -2993,8 +2993,8 @@ DEFUN ("scroll-up", Fscroll_up, Sscroll_up, 0, 1, "P", | |||
| 2993 | "Scroll text of current window upward ARG lines; or near full screen if no ARG.\n\ | 2993 | "Scroll text of current window upward ARG lines; or near full screen if no ARG.\n\ |
| 2994 | A near full screen is `next-screen-context-lines' less than a full screen.\n\ | 2994 | A near full screen is `next-screen-context-lines' less than a full screen.\n\ |
| 2995 | Negative ARG means scroll downward.\n\ | 2995 | Negative ARG means scroll downward.\n\ |
| 2996 | If ARG is the atom `-', scroll downward by nearly full screen. | 2996 | If ARG is the atom `-', scroll downward by nearly full screen.\n\ |
| 2997 | When calling from a program, supply as argument a number, nil, or '-.") | 2997 | When calling from a program, supply as argument a number, nil, or `-'.") |
| 2998 | (arg) | 2998 | (arg) |
| 2999 | Lisp_Object arg; | 2999 | Lisp_Object arg; |
| 3000 | { | 3000 | { |
| @@ -3006,8 +3006,8 @@ DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "P", | |||
| 3006 | "Scroll text of current window down ARG lines; or near full screen if no ARG.\n\ | 3006 | "Scroll text of current window down ARG lines; or near full screen if no ARG.\n\ |
| 3007 | A near full screen is `next-screen-context-lines' less than a full screen.\n\ | 3007 | A near full screen is `next-screen-context-lines' less than a full screen.\n\ |
| 3008 | Negative ARG means scroll upward.\n\ | 3008 | Negative ARG means scroll upward.\n\ |
| 3009 | If ARG is the atom `-', scroll upward by nearly full screen. | 3009 | If ARG is the atom `-', scroll upward by nearly full screen.\n\ |
| 3010 | When calling from a program, supply as argument a number, nil, or '-.") | 3010 | When calling from a program, supply as argument a number, nil, or `-'.") |
| 3011 | (arg) | 3011 | (arg) |
| 3012 | Lisp_Object arg; | 3012 | Lisp_Object arg; |
| 3013 | { | 3013 | { |
| @@ -3060,11 +3060,11 @@ showing that buffer is used.") | |||
| 3060 | 3060 | ||
| 3061 | DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P", | 3061 | DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P", |
| 3062 | "Scroll next window upward ARG lines; or near full screen if no ARG.\n\ | 3062 | "Scroll next window upward ARG lines; or near full screen if no ARG.\n\ |
| 3063 | A near full screen is `next-screen-context-lines' less than a full screen. | 3063 | A near full screen is `next-screen-context-lines' less than a full screen.\n\ |
| 3064 | The next window is the one below the current one; or the one at the top\n\ | 3064 | The next window is the one below the current one; or the one at the top\n\ |
| 3065 | if the current one is at the bottom. Negative ARG means scroll downward.\n\ | 3065 | if the current one is at the bottom. Negative ARG means scroll downward.\n\ |
| 3066 | If ARG is the atom `-', scroll downward by nearly full screen. | 3066 | If ARG is the atom `-', scroll downward by nearly full screen.\n\ |
| 3067 | When calling from a program, supply as argument a number, nil, or '-.\n\ | 3067 | When calling from a program, supply as argument a number, nil, or `-'.\n\ |
| 3068 | \n\ | 3068 | \n\ |
| 3069 | If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\ | 3069 | If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\ |
| 3070 | specifies the window to scroll.\n\ | 3070 | specifies the window to scroll.\n\ |