# HG changeset patch # User Joseph Arceneaux # Date 716802221 0 # Node ID 7d6e0669b3dc8fca7840d017eff93a9b06430cc3 # Parent 5bfabf7de8e96f264dba1e10121463eb8a581e5b *** empty log message *** diff -r 5bfabf7de8e9 -r 7d6e0669b3dc lisp/isearch.el --- a/lisp/isearch.el Fri Sep 18 07:30:25 1992 +0000 +++ b/lisp/isearch.el Fri Sep 18 07:43:41 1992 +0000 @@ -493,7 +493,8 @@ 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 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."