changeset 17962:8621a73a8890

(syms_of_window): Initialize inhibit_frame_unsplittable.
author Richard M. Stallman <rms@gnu.org>
date Tue, 27 May 1997 02:46:14 +0000
parents 86ae1679df19
children b77c13e71ba3
files src/window.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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);