diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-09-03 07:44:21 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-09-03 07:44:21 +0000 |
commit | b7d4105c1eef2afe1698fd0685e6baaca3e27210 (patch) | |
tree | d74b60257f4247a64aa97ce714893a55055f5b59 | |
parent | 29305a4649381fda07e004353be3d12faf14c4b4 (diff) | |
download | emacs-b7d4105c1eef2afe1698fd0685e6baaca3e27210.tar.gz |
(ispell-overlay-window): Undo previous change;
in other words, don't bind inhibit-frame-unsplittable.
-rw-r--r-- | lisp/textmodes/ispell.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index 51073451667..79ca7737979 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el @@ -1496,8 +1496,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 ((inhibit-frame-unsplittable t)) - (split-window nil height)) + (split-window nil height) (set-window-start (next-window) top)))) |