# HG changeset patch # User Richard M. Stallman # Date 864701174 0 # Node ID 8621a73a8890c3a8b468f88648faaeff33034ccd # Parent 86ae1679df19f51f469c4a534d7fc301fd6d7c3b (syms_of_window): Initialize inhibit_frame_unsplittable. diff -r 86ae1679df19 -r 8621a73a8890 src/window.c --- a/src/window.c Tue May 27 01:54:42 1997 +0000 +++ b/src/window.c Tue May 27 02:46:14 1997 +0000 @@ -119,7 +119,7 @@ at the same screen height as previously. */ static int scroll_preserve_screen_position; -/* Non-nil means we can split a frame even if it is "unsplittable". */ +/* Nonzero means we can split a frame even if it is "unsplittable". */ static int inhibit_frame_unsplittable; #define min(a, b) ((a) < (b) ? (a) : (b)) @@ -3784,6 +3784,7 @@ \(That means, a frame whise `unsplittable' parameter is non-nil.)\n\ Packages such as Ispell that work by splitting the selected frame\n\ can bind this, so that they will work when used in an unsplittable frame."); + inhibit_frame_unsplittable = 0; defsubr (&Sselected_window); defsubr (&Sminibuffer_window);