diff options
| author | Richard M. Stallman | 1997-05-27 02:46:14 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-05-27 02:46:14 +0000 |
| commit | 91a78190f123a8b80e1f8384cf1d0b46ebc06cfa (patch) | |
| tree | ead52f197d502b88c8c1e73ad67c483c70633de3 /src/window.c | |
| parent | ae5a0dd403ca1ca8d4b8d100c8d92ba3eea04695 (diff) | |
| download | emacs-91a78190f123a8b80e1f8384cf1d0b46ebc06cfa.tar.gz emacs-91a78190f123a8b80e1f8384cf1d0b46ebc06cfa.zip | |
(syms_of_window): Initialize inhibit_frame_unsplittable.
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 3 |
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; | |||
| 119 | at the same screen height as previously. */ | 119 | at the same screen height as previously. */ |
| 120 | static int scroll_preserve_screen_position; | 120 | static int scroll_preserve_screen_position; |
| 121 | 121 | ||
| 122 | /* Non-nil means we can split a frame even if it is "unsplittable". */ | 122 | /* Nonzero means we can split a frame even if it is "unsplittable". */ |
| 123 | static int inhibit_frame_unsplittable; | 123 | static int inhibit_frame_unsplittable; |
| 124 | 124 | ||
| 125 | #define min(a, b) ((a) < (b) ? (a) : (b)) | 125 | #define min(a, b) ((a) < (b) ? (a) : (b)) |
| @@ -3784,6 +3784,7 @@ The selected frae is the one whose configuration has changed."); | |||
| 3784 | \(That means, a frame whise `unsplittable' parameter is non-nil.)\n\ | 3784 | \(That means, a frame whise `unsplittable' parameter is non-nil.)\n\ |
| 3785 | Packages such as Ispell that work by splitting the selected frame\n\ | 3785 | Packages such as Ispell that work by splitting the selected frame\n\ |
| 3786 | can bind this, so that they will work when used in an unsplittable frame."); | 3786 | can bind this, so that they will work when used in an unsplittable frame."); |
| 3787 | inhibit_frame_unsplittable = 0; | ||
| 3787 | 3788 | ||
| 3788 | defsubr (&Sselected_window); | 3789 | defsubr (&Sselected_window); |
| 3789 | defsubr (&Sminibuffer_window); | 3790 | defsubr (&Sminibuffer_window); |