# HG changeset patch # User Karl Heuer # Date 896539635 0 # Node ID d8f0117780947cc37751018a12237161ffadaf04 # Parent 5c9c0bd0a408c882523e65cfe61952476070f270 (Fscroll_up, Fscroll_down, Fscroll_other_window): Doc fix. diff -r 5c9c0bd0a408 -r d8f011778094 src/window.c --- a/src/window.c Sat May 30 14:41:23 1998 +0000 +++ b/src/window.c Sat May 30 14:47:15 1998 +0000 @@ -2993,8 +2993,8 @@ "Scroll text of current window upward ARG lines; or near full screen if no ARG.\n\ A near full screen is `next-screen-context-lines' less than a full screen.\n\ Negative ARG means scroll downward.\n\ -If ARG is the atom `-', scroll downward by nearly full screen. -When calling from a program, supply as argument a number, nil, or '-.") +If ARG is the atom `-', scroll downward by nearly full screen.\n\ +When calling from a program, supply as argument a number, nil, or `-'.") (arg) Lisp_Object arg; { @@ -3006,8 +3006,8 @@ "Scroll text of current window down ARG lines; or near full screen if no ARG.\n\ A near full screen is `next-screen-context-lines' less than a full screen.\n\ Negative ARG means scroll upward.\n\ -If ARG is the atom `-', scroll upward by nearly full screen. -When calling from a program, supply as argument a number, nil, or '-.") +If ARG is the atom `-', scroll upward by nearly full screen.\n\ +When calling from a program, supply as argument a number, nil, or `-'.") (arg) Lisp_Object arg; { @@ -3060,11 +3060,11 @@ DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P", "Scroll next window upward ARG lines; or near full screen if no ARG.\n\ -A near full screen is `next-screen-context-lines' less than a full screen. +A near full screen is `next-screen-context-lines' less than a full screen.\n\ The next window is the one below the current one; or the one at the top\n\ if the current one is at the bottom. Negative ARG means scroll downward.\n\ -If ARG is the atom `-', scroll downward by nearly full screen. -When calling from a program, supply as argument a number, nil, or '-.\n\ +If ARG is the atom `-', scroll downward by nearly full screen.\n\ +When calling from a program, supply as argument a number, nil, or `-'.\n\ \n\ If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\ specifies the window to scroll.\n\