Mercurial > emacs
diff src/window.c @ 17955:3140e48262f9
frame-override-unsplittable/inhibit-frame-unsplittable name change.
| author | Simon Marshall <simon@gnu.org> |
|---|---|
| date | Mon, 26 May 1997 08:17:39 +0000 |
| parents | f6aa3f1afc16 |
| children | 8621a73a8890 |
line wrap: on
line diff
--- a/src/window.c Mon May 26 07:53:35 1997 +0000 +++ b/src/window.c Mon May 26 08:17:39 1997 +0000 @@ -120,7 +120,7 @@ static int scroll_preserve_screen_position; /* Non-nil means we can split a frame even if it is "unsplittable". */ -static int frame_override_unsplittable; +static int inhibit_frame_unsplittable; #define min(a, b) ((a) < (b) ? (a) : (b)) @@ -2397,7 +2397,7 @@ if (MINI_WINDOW_P (o)) error ("Attempt to split minibuffer window"); - else if (FRAME_NO_SPLIT_P (fo) && ! frame_override_unsplittable) + else if (FRAME_NO_SPLIT_P (fo) && ! inhibit_frame_unsplittable) error ("Attempt to split unsplittable frame"); check_min_window_sizes (); @@ -3779,7 +3779,7 @@ The selected frae is the one whose configuration has changed."); Vwindow_configuration_change_hook = Qnil; - DEFVAR_BOOL ("frame-override-unsplittable", &frame_override_unsplittable, + 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\
