# HG changeset patch # User Eli Zaretskii # Date 981099637 0 # Node ID ca8a0bbc64f78b459ec4141d58cae7b82d04ceb0 # Parent 76aa6a25b93111d6f8812c05e28725b45a654383 (Fenlarge_window, Fshrink_window): Doc fix. diff -r 76aa6a25b931 -r ca8a0bbc64f7 src/window.c --- a/src/window.c Fri Feb 02 07:25:49 2001 +0000 +++ b/src/window.c Fri Feb 02 07:40:37 2001 +0000 @@ -3298,7 +3298,8 @@ DEFUN ("enlarge-window", Fenlarge_window, Senlarge_window, 1, 2, "p", "Make current window ARG lines bigger.\n\ -From program, optional second arg non-nil means grow sideways ARG columns.") +From program, optional second arg non-nil means grow sideways ARG columns.\n\ +Interactively, if an argument is not given, make the window one line bigger.") (arg, side) register Lisp_Object arg, side; { @@ -3313,7 +3314,8 @@ DEFUN ("shrink-window", Fshrink_window, Sshrink_window, 1, 2, "p", "Make current window ARG lines smaller.\n\ -From program, optional second arg non-nil means shrink sideways arg columns.") +From program, optional second arg non-nil means shrink sideways arg columns.\n\ +Interactively, if an argument is not given, make the window one line smaller.") (arg, side) register Lisp_Object arg, side; {