diff options
| author | Richard M. Stallman | 2001-01-03 00:31:18 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-01-03 00:31:18 +0000 |
| commit | 04212fcbbd5616b5fb4c64b9ac35a8abca64cb40 (patch) | |
| tree | ba538afd2f9410475d4e4d2df49e7a3a8ffe7eb9 | |
| parent | 5297fb001f7c204775bf4f9f958f552b599e6e94 (diff) | |
| download | emacs-04212fcbbd5616b5fb4c64b9ac35a8abca64cb40.tar.gz emacs-04212fcbbd5616b5fb4c64b9ac35a8abca64cb40.zip | |
(Frecenter): Doc fix.
| -rw-r--r-- | src/window.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/window.c b/src/window.c index af5e61bef85..25434f5b718 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -4431,7 +4431,6 @@ Default for ARG is window width minus 2.") | |||
| 4431 | - XINT (arg))); | 4431 | - XINT (arg))); |
| 4432 | } | 4432 | } |
| 4433 | 4433 | ||
| 4434 | |||
| 4435 | /* Value is the number of lines actually displayed in window W, | 4434 | /* Value is the number of lines actually displayed in window W, |
| 4436 | as opposed to its height. */ | 4435 | as opposed to its height. */ |
| 4437 | 4436 | ||
| @@ -4480,11 +4479,15 @@ displayed_window_lines (w) | |||
| 4480 | 4479 | ||
| 4481 | 4480 | ||
| 4482 | DEFUN ("recenter", Frecenter, Srecenter, 0, 1, "P", | 4481 | DEFUN ("recenter", Frecenter, Srecenter, 0, 1, "P", |
| 4483 | "Center point in window and redisplay frame. With ARG, put point on line ARG.\n\ | 4482 | "Center point in window and redisplay frame.\n\ |
| 4484 | The desired position of point is always relative to the current window.\n\ | 4483 | With prefix argument ARG, recenter putting point on screen line ARG\n\ |
| 4485 | Just C-u as prefix means put point in the center of the window.\n\ | 4484 | relative to the current window. If ARG is negative, it counts up from the\n\ |
| 4486 | If ARG is omitted or nil, erases the entire frame and then\n\ | 4485 | bottom of the window. (ARG should be less than the height of the window.)\n\ |
| 4487 | redraws with point in the center of the current window.") | 4486 | \n\ |
| 4487 | If ARG is omitted or nil, erase the entire frame and then\n\ | ||
| 4488 | redraw with point in the center of the current window.\n\ | ||
| 4489 | Just C-u as prefix means put point in the center of the window\n\ | ||
| 4490 | and redisplay normally--don't erase and redraw the frame.") | ||
| 4488 | (arg) | 4491 | (arg) |
| 4489 | register Lisp_Object arg; | 4492 | register Lisp_Object arg; |
| 4490 | { | 4493 | { |