diff options
author | Joseph Arceneaux <jla@gnu.org> | 1992-09-18 07:43:41 +0000 |
---|---|---|
committer | Joseph Arceneaux <jla@gnu.org> | 1992-09-18 07:43:41 +0000 |
commit | dd492f047a0dcf03119aa214a6b002cb6fc347da (patch) | |
tree | 6fd3a34570585867f751676c2355db943e96933e /lisp/isearch.el | |
parent | 1844ea6b76d4af7eb7ab65a938f974235b738800 (diff) | |
download | emacs-dd492f047a0dcf03119aa214a6b002cb6fc347da.tar.gz |
*** empty log message ***
Diffstat (limited to 'lisp/isearch.el')
-rw-r--r-- | lisp/isearch.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el index 85bfbb5bb81..c2383cf1fa8 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -493,7 +493,8 @@ is treated as a regexp. See \\[isearch-forward] for more info." isearch-adjusted nil isearch-yank-flag nil isearch-invalid-regexp nil - isearch-slow-terminal-mode (and (<= baud-rate search-slow-speed) + ;; Use (baud-rate) for now, for sake of other versions. + isearch-slow-terminal-mode (and (<= (baud-rate) search-slow-speed) (> (window-height) (* 4 search-slow-window-lines))) isearch-other-end nil @@ -1150,7 +1151,7 @@ If not in regexp mode, activate word search." (if minibuffer-history-sexp-flag (prin1-to-string elt) elt))) - (goto-char (point-min))))) + (goto-char (point-min)))))) (defun isearch-ring-retreat-edit (n) "Inserts the previous element of the search history into the minibuffer." |