1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 18:40:39 -08:00

(ispell-overlay-window): Bind frame-override-unsplittable.

This commit is contained in:
Richard M. Stallman 1997-04-22 23:25:24 +00:00
parent e74231dc27
commit 38c1d5e379

View file

@ -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))))