Mercurial > emacs
changeset 1162:7d6e0669b3dc
*** empty log message ***
author | Joseph Arceneaux <jla@gnu.org> |
---|---|
date | Fri, 18 Sep 1992 07:43:41 +0000 |
parents | 5bfabf7de8e9 |
children | c205d560cc22 |
files | lisp/isearch.el |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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."