diff options
author | Jim Blandy <jimb@redhat.com> | 1992-07-15 02:24:58 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-07-15 02:24:58 +0000 |
commit | f98955eaaa3d2c459b373a7b4c5d1176a18687d9 (patch) | |
tree | 23dc25a018ca240872c713d715420f96d3315e7d /lisp/isearch-old.el | |
parent | dc6d96816db5f4f7b484e5e394501e5724c2d02f (diff) | |
download | emacs-f98955eaaa3d2c459b373a7b4c5d1176a18687d9.tar.gz |
*** empty log message ***
Diffstat (limited to 'lisp/isearch-old.el')
-rw-r--r-- | lisp/isearch-old.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/isearch-old.el b/lisp/isearch-old.el index 265ea6b5682..1661979e5f1 100644 --- a/lisp/isearch-old.el +++ b/lisp/isearch-old.el @@ -166,7 +166,7 @@ is treated as a regexp. See \\[isearch-forward] for more info." ;; non-nil means an explicit uppercase letter seen in the input (uppercase-flag nil) ;; Non-nil means start using a small window - ;; if the search moves outside what is currently on the screen. + ;; if the search moves outside what is currently on the frame. (slow-terminal-mode (and (<= baud-rate search-slow-speed) (> (window-height) (* 4 search-slow-window-lines)))) @@ -183,8 +183,8 @@ is treated as a regexp. See \\[isearch-forward] for more info." ;; for moving the cursor back on quitting. (opoint (point)) (inhibit-quit t) ;Prevent ^G from quitting, so we can read it. - ;; The screen we're working on; if this changes, we exit isearch. - (screen (if (fboundp 'selected-screen) (selected-screen)))) + ;; The frame we're working on; if this changes, we exit isearch. + (frame (if (fboundp 'selected-frame) (selected-frame)))) (isearch-push-state) (save-window-excursion @@ -225,8 +225,8 @@ is treated as a regexp. See \\[isearch-forward] for more info." (setq unread-command-char char) (throw 'search-done t)) - ;; If the user switches to a different screen, exit. - ((not (eq screen last-event-screen)) + ;; If the user switches to a different frame, exit. + ((not (eq frame last-event-frame)) (setq unread-command-char char) (throw 'search-done t)) |