summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Marshall <simon@gnu.org>1997-05-26 08:17:39 +0000
committerSimon Marshall <simon@gnu.org>1997-05-26 08:17:39 +0000
commit8ff6a83f75eb51c7a614452e8b5298af1ca29188 (patch)
tree5c05ae2f6ecaf5e5b8deeece9938229c864b621b
parenta09be9926b9d7aee0ef349e05b543d00fdf486ae (diff)
downloademacs-8ff6a83f75eb51c7a614452e8b5298af1ca29188.tar.gz
frame-override-unsplittable/inhibit-frame-unsplittable name change.
-rw-r--r--lisp/textmodes/ispell.el2
-rw-r--r--src/window.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index 817f8d281a7..5f470faa72a 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -1479,7 +1479,7 @@ scrolling the current window. Leave the new window selected."
;; So we increment the height for this case.
(if (string-match "19\.9.*Lucid" (emacs-version))
(setq height (1+ height)))
- (let ((frame-override-unsplittable t))
+ (let ((inhibit-frame-unsplittable t))
(split-window nil height))
(set-window-start (next-window) top))))
diff --git a/src/window.c b/src/window.c
index 803cf7da0c2..373a46b6a98 100644
--- a/src/window.c
+++ b/src/window.c
@@ -120,7 +120,7 @@ Lisp_Object Vwindow_configuration_change_hook;
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 @@ and put SIZE columns in the first of the pair.")
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 @@ If there is only one window, it is split regardless of this value.");
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\