diff options
| author | Karl Heuer | 1994-03-23 20:31:08 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-03-23 20:31:08 +0000 |
| commit | 279e0e0c5dc1c32d13db28d59075a59a0861630c (patch) | |
| tree | ee44bfd92aed4e36e25470fc447bdf9589e4ed15 /src | |
| parent | 0aed85f4d6a8021f458c75c9af77249d73679e6e (diff) | |
| download | emacs-279e0e0c5dc1c32d13db28d59075a59a0861630c.tar.gz emacs-279e0e0c5dc1c32d13db28d59075a59a0861630c.zip | |
(Fscroll_up, Fscroll_down, Fscroll_other_window): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/window.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c index 0f827113b65..98a5cbfc0b4 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -2264,6 +2264,7 @@ scroll_command (n, direction) | |||
| 2264 | DEFUN ("scroll-up", Fscroll_up, Sscroll_up, 0, 1, "P", | 2264 | DEFUN ("scroll-up", Fscroll_up, Sscroll_up, 0, 1, "P", |
| 2265 | "Scroll text of current window upward ARG lines; or near full screen if no ARG.\n\ | 2265 | "Scroll text of current window upward ARG lines; or near full screen if no ARG.\n\ |
| 2266 | A near full screen is `next-screen-context-lines' less than a full screen.\n\ | 2266 | A near full screen is `next-screen-context-lines' less than a full screen.\n\ |
| 2267 | Negative ARG means scroll downward.\n\ | ||
| 2267 | When calling from a program, supply a number as argument or nil.") | 2268 | When calling from a program, supply a number as argument or nil.") |
| 2268 | (n) | 2269 | (n) |
| 2269 | Lisp_Object n; | 2270 | Lisp_Object n; |
| @@ -2275,6 +2276,7 @@ When calling from a program, supply a number as argument or nil.") | |||
| 2275 | DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "P", | 2276 | DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "P", |
| 2276 | "Scroll text of current window downward ARG lines; or near full screen if no ARG.\n\ | 2277 | "Scroll text of current window downward ARG lines; or near full screen if no ARG.\n\ |
| 2277 | A near full screen is `next-screen-context-lines' less than a full screen.\n\ | 2278 | A near full screen is `next-screen-context-lines' less than a full screen.\n\ |
| 2279 | Negative ARG means scroll upward.\n\ | ||
| 2278 | When calling from a program, supply a number as argument or nil.") | 2280 | When calling from a program, supply a number as argument or nil.") |
| 2279 | (n) | 2281 | (n) |
| 2280 | Lisp_Object n; | 2282 | Lisp_Object n; |
| @@ -2286,7 +2288,7 @@ When calling from a program, supply a number as argument or nil.") | |||
| 2286 | DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P", | 2288 | DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P", |
| 2287 | "Scroll next window upward ARG lines; or near full screen if no ARG.\n\ | 2289 | "Scroll next window upward ARG lines; or near full screen if no ARG.\n\ |
| 2288 | The next window is the one below the current one; or the one at the top\n\ | 2290 | The next window is the one below the current one; or the one at the top\n\ |
| 2289 | if the current one is at the bottom.\n\ | 2291 | if the current one is at the bottom. Negative ARG means scroll downward.\n\ |
| 2290 | When calling from a program, supply a number as argument or nil.\n\ | 2292 | When calling from a program, supply a number as argument or nil.\n\ |
| 2291 | \n\ | 2293 | \n\ |
| 2292 | If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\ | 2294 | If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\ |