summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-04-22 23:25:24 +0000
committerRichard M. Stallman <rms@gnu.org>1997-04-22 23:25:24 +0000
commit6b1b4773589a8354519e4f903c46ed0f5310fd2a (patch)
tree3cdd55c758e9a5cd2bf8f12393edcc33049a0c43
parent2927f0d704e356aec5bf94a4948f326bbc5699f0 (diff)
downloademacs-6b1b4773589a8354519e4f903c46ed0f5310fd2a.tar.gz
(ispell-overlay-window): Bind frame-override-unsplittable.
-rw-r--r--lisp/textmodes/ispell.el3
1 files changed, 2 insertions, 1 deletions
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))))