]> git.eshelyaron.com Git - emacs.git/commitdiff
(recenter-top-bottom): Doc fix.
authorChong Yidong <cyd@stupidchicken.com>
Mon, 1 Sep 2008 17:47:51 +0000 (17:47 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Mon, 1 Sep 2008 17:47:51 +0000 (17:47 +0000)
lisp/window.el

index 2439c9f8c6b42d208495c690f894ef5577e309b3..972e54083e75b9694911b6549bbf1f2c2ff39191 100644 (file)
@@ -1427,17 +1427,17 @@ Possible values: `top', `middle', `bottom'.")
 
 (defun recenter-top-bottom (&optional arg)
   "Move current line to window center, top, and bottom, successively.
-With a prefix argument, this is the same as `recenter':
+With no prefix argument, the first call redraws the frame and
+ centers point vertically within the window.  Successive calls
+ scroll the window, placing point on the top, bottom, and middle
+ consecutively.  The cycling order is middle -> top -> bottom.
+
+A prefix argument is handled like `recenter':
  With numeric prefix ARG, move current line to window-line ARG.
  With plain `C-u', move current line to window center.
 
-Otherwise move current line to window center on first call, and to
-top, middle, or bottom on successive calls.
-
-The cycling order is: middle -> top -> bottom.
-
 Top and bottom destinations are actually `scroll-margin' lines
-the from true window top and bottom."
+ the from true window top and bottom."
   (interactive "P")
   (cond
    (arg (recenter arg))                 ; Always respect ARG.