From 38c1d5e379193738b0c5856b9f6b112238bc505e Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 22 Apr 1997 23:25:24 +0000 Subject: [PATCH] (ispell-overlay-window): Bind frame-override-unsplittable. --- lisp/textmodes/ispell.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index 82916c546a4..940915672ee 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el @@ -1479,7 +1479,8 @@ 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))) - (split-window nil height) + (let ((frame-override-unsplittable t)) + (split-window nil height)) (set-window-start (next-window) top)))) -- 2.39.5