summaryrefslogtreecommitdiff
path: root/src/window.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-05-27 02:46:14 +0000
committerRichard M. Stallman <rms@gnu.org>1997-05-27 02:46:14 +0000
commite10eb7e3af3b410cd1bc2c120fdc9bd130818e17 (patch)
tree12cf39f23e50476683470606355ff2a7d6487c92 /src/window.c
parentd473d372a3333d2f858dc554141e91cf57dbb495 (diff)
downloademacs-e10eb7e3af3b410cd1bc2c120fdc9bd130818e17.tar.gz
(syms_of_window): Initialize inhibit_frame_unsplittable.
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c
index 373a46b6a98..16b65442e77 100644
--- a/src/window.c
+++ b/src/window.c
@@ -119,7 +119,7 @@ Lisp_Object Vwindow_configuration_change_hook;
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 @@ The selected frae is the one whose configuration has changed.");
\(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);