Mercurial > emacs
diff src/window.c @ 18065:34f4e691486e
(Fsplit_window): Ignore FRAME_NO_SPLIT_P here.
(inhibit_frame_unsplittable): Variable deleted.
(syms_of_window): Don't set up Lisp variable.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Sat, 31 May 1997 05:50:22 +0000 |
| parents | 8621a73a8890 |
| children | d65021d5c39e |
line wrap: on
line diff
--- a/src/window.c Sat May 31 05:39:02 1997 +0000 +++ b/src/window.c Sat May 31 05:50:22 1997 +0000 @@ -2397,8 +2397,6 @@ if (MINI_WINDOW_P (o)) error ("Attempt to split minibuffer window"); - else if (FRAME_NO_SPLIT_P (fo) && ! inhibit_frame_unsplittable) - error ("Attempt to split unsplittable frame"); check_min_window_sizes (); @@ -3779,13 +3777,6 @@ The selected frae is the one whose configuration has changed."); Vwindow_configuration_change_hook = Qnil; - DEFVAR_BOOL ("inhibit-frame-unsplittable", &inhibit_frame_unsplittable, - "Non-nil means allow splitting an `unsplittable' frame.\n\ -\(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); defsubr (&Swindow_minibuffer_p);
