diff options
| author | Richard M. Stallman | 1997-05-31 05:50:22 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-05-31 05:50:22 +0000 |
| commit | 089e71e47a3883175807c482b5e8367db710f0e6 (patch) | |
| tree | 452f7fa50f4145a39282f6f70f49e82ae129430d | |
| parent | b8b29706b1f386e70658a257fe1d6a2f74b1812d (diff) | |
| download | emacs-089e71e47a3883175807c482b5e8367db710f0e6.tar.gz emacs-089e71e47a3883175807c482b5e8367db710f0e6.zip | |
(Fsplit_window): Ignore FRAME_NO_SPLIT_P here.
(inhibit_frame_unsplittable): Variable deleted.
(syms_of_window): Don't set up Lisp variable.
| -rw-r--r-- | src/window.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/window.c b/src/window.c index 16b65442e77..016c0070bb5 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -2397,8 +2397,6 @@ and put SIZE columns in the first of the pair.") | |||
| 2397 | 2397 | ||
| 2398 | if (MINI_WINDOW_P (o)) | 2398 | if (MINI_WINDOW_P (o)) |
| 2399 | error ("Attempt to split minibuffer window"); | 2399 | error ("Attempt to split minibuffer window"); |
| 2400 | else if (FRAME_NO_SPLIT_P (fo) && ! inhibit_frame_unsplittable) | ||
| 2401 | error ("Attempt to split unsplittable frame"); | ||
| 2402 | 2400 | ||
| 2403 | check_min_window_sizes (); | 2401 | check_min_window_sizes (); |
| 2404 | 2402 | ||
| @@ -3779,13 +3777,6 @@ If there is only one window, it is split regardless of this value."); | |||
| 3779 | The selected frae is the one whose configuration has changed."); | 3777 | The selected frae is the one whose configuration has changed."); |
| 3780 | Vwindow_configuration_change_hook = Qnil; | 3778 | Vwindow_configuration_change_hook = Qnil; |
| 3781 | 3779 | ||
| 3782 | DEFVAR_BOOL ("inhibit-frame-unsplittable", &inhibit_frame_unsplittable, | ||
| 3783 | "Non-nil means allow splitting an `unsplittable' frame.\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\ | ||
| 3786 | can bind this, so that they will work when used in an unsplittable frame."); | ||
| 3787 | inhibit_frame_unsplittable = 0; | ||
| 3788 | |||
| 3789 | defsubr (&Sselected_window); | 3780 | defsubr (&Sselected_window); |
| 3790 | defsubr (&Sminibuffer_window); | 3781 | defsubr (&Sminibuffer_window); |
| 3791 | defsubr (&Swindow_minibuffer_p); | 3782 | defsubr (&Swindow_minibuffer_p); |