From: Richard M. Stallman Date: Tue, 22 Apr 1997 23:25:24 +0000 (+0000) Subject: (ispell-overlay-window): Bind frame-override-unsplittable. X-Git-Tag: emacs-20.1~2406 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=38c1d5e379193738b0c5856b9f6b112238bc505e;p=emacs.git (ispell-overlay-window): Bind frame-override-unsplittable. --- 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))))