comparison src/window.c @ 77883:838cb617af0f

(Fshrink_window): Reflow docstring.
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 04 Jun 2007 22:47:22 +0000
parents 91cecb8739e7
children 2fd30dc1a157
comparison
equal deleted inserted replaced
77882:3f871c5f3357 77883:838cb617af0f
4108 } 4108 }
4109 4109
4110 DEFUN ("shrink-window", Fshrink_window, Sshrink_window, 1, 2, "p", 4110 DEFUN ("shrink-window", Fshrink_window, Sshrink_window, 1, 2, "p",
4111 doc: /* Make current window ARG lines smaller. 4111 doc: /* Make current window ARG lines smaller.
4112 From program, optional second arg non-nil means shrink sideways arg columns. 4112 From program, optional second arg non-nil means shrink sideways arg columns.
4113 Interactively, if an argument is not given, make the window one line smaller. Only 4113 Interactively, if an argument is not given, make the window one line smaller.
4114 siblings to the right or below are changed. */) 4114 Only siblings to the right or below are changed. */)
4115 (arg, side) 4115 (arg, side)
4116 Lisp_Object arg, side; 4116 Lisp_Object arg, side;
4117 { 4117 {
4118 CHECK_NUMBER (arg); 4118 CHECK_NUMBER (arg);
4119 enlarge_window (selected_window, -XINT (arg), !NILP (side)); 4119 enlarge_window (selected_window, -XINT (arg), !NILP (side));