diff options
| author | Chong Yidong | 2008-04-02 20:15:43 +0000 |
|---|---|---|
| committer | Chong Yidong | 2008-04-02 20:15:43 +0000 |
| commit | e09655973f544d4a7a3e3ed337ac5e8d167ae5fd (patch) | |
| tree | a34905c73b99800259a44f58726b6efb9190f2ee /src/window.c | |
| parent | 1e9dbb5f644b87177ead183ec9b9b9567dfe806e (diff) | |
| download | emacs-e09655973f544d4a7a3e3ed337ac5e8d167ae5fd.tar.gz emacs-e09655973f544d4a7a3e3ed337ac5e8d167ae5fd.zip | |
(Fscroll_up, Fscroll_down, Fscroll_left)
(Fscroll_right): Add ^ interactive spec.
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/window.c b/src/window.c index 26b006069ac..77940d250a6 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -5597,7 +5597,7 @@ scroll_command (n, direction) | |||
| 5597 | unbind_to (count, Qnil); | 5597 | unbind_to (count, Qnil); |
| 5598 | } | 5598 | } |
| 5599 | 5599 | ||
| 5600 | DEFUN ("scroll-up", Fscroll_up, Sscroll_up, 0, 1, "P", | 5600 | DEFUN ("scroll-up", Fscroll_up, Sscroll_up, 0, 1, "^P", |
| 5601 | doc: /* Scroll text of current window upward ARG lines. | 5601 | doc: /* Scroll text of current window upward ARG lines. |
| 5602 | If ARG is omitted or nil, scroll upward by a near full screen. | 5602 | If ARG is omitted or nil, scroll upward by a near full screen. |
| 5603 | A near full screen is `next-screen-context-lines' less than a full screen. | 5603 | A near full screen is `next-screen-context-lines' less than a full screen. |
| @@ -5611,7 +5611,7 @@ When calling from a program, supply as argument a number, nil, or `-'. */) | |||
| 5611 | return Qnil; | 5611 | return Qnil; |
| 5612 | } | 5612 | } |
| 5613 | 5613 | ||
| 5614 | DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "P", | 5614 | DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "^P", |
| 5615 | doc: /* Scroll text of current window down ARG lines. | 5615 | doc: /* Scroll text of current window down ARG lines. |
| 5616 | If ARG is omitted or nil, scroll down by a near full screen. | 5616 | If ARG is omitted or nil, scroll down by a near full screen. |
| 5617 | A near full screen is `next-screen-context-lines' less than a full screen. | 5617 | A near full screen is `next-screen-context-lines' less than a full screen. |
| @@ -5717,7 +5717,7 @@ specifies the window to scroll. This takes precedence over | |||
| 5717 | return Qnil; | 5717 | return Qnil; |
| 5718 | } | 5718 | } |
| 5719 | 5719 | ||
| 5720 | DEFUN ("scroll-left", Fscroll_left, Sscroll_left, 0, 2, "P\np", | 5720 | DEFUN ("scroll-left", Fscroll_left, Sscroll_left, 0, 2, "^P\np", |
| 5721 | doc: /* Scroll selected window display ARG columns left. | 5721 | doc: /* Scroll selected window display ARG columns left. |
| 5722 | Default for ARG is window width minus 2. | 5722 | Default for ARG is window width minus 2. |
| 5723 | Value is the total amount of leftward horizontal scrolling in | 5723 | Value is the total amount of leftward horizontal scrolling in |
| @@ -5747,7 +5747,7 @@ by this function. This happens in an interactive call. */) | |||
| 5747 | return result; | 5747 | return result; |
| 5748 | } | 5748 | } |
| 5749 | 5749 | ||
| 5750 | DEFUN ("scroll-right", Fscroll_right, Sscroll_right, 0, 2, "P\np", | 5750 | DEFUN ("scroll-right", Fscroll_right, Sscroll_right, 0, 2, "^P\np", |
| 5751 | doc: /* Scroll selected window display ARG columns right. | 5751 | doc: /* Scroll selected window display ARG columns right. |
| 5752 | Default for ARG is window width minus 2. | 5752 | Default for ARG is window width minus 2. |
| 5753 | Value is the total amount of leftward horizontal scrolling in | 5753 | Value is the total amount of leftward horizontal scrolling in |