# HG changeset patch # User Richard M. Stallman # Date 1013009115 0 # Node ID 67d86dad54545147e4c9c1a0aeaf306cce304f16 # Parent d7ccb71bc97cdeb3544864fc061b8d421c2d2990 (isearch-update): Don't update display in kbd macro. (isearch-lazy-highlight-new-loop): Do nothing in kbd macro. diff -r d7ccb71bc97c -r 67d86dad5454 lisp/isearch.el --- a/lisp/isearch.el Wed Feb 06 15:23:30 2002 +0000 +++ b/lisp/isearch.el Wed Feb 06 15:25:15 2002 +0000 @@ -616,7 +616,8 @@ (defun isearch-update () ;; Called after each command to update the display. - (if (null unread-command-events) + (if (and (null unread-command-events) + (null executing-kbd-macro)) (progn (if (not (input-pending-p)) (isearch-message)) @@ -2002,6 +2003,7 @@ This happens when `isearch-update' is invoked (which can cause the search string to change or the window to scroll)." (when (and isearch-lazy-highlight + (null executing-kbd-macro) (sit-for 0) ;make sure (window-start) is credible (or (not (equal isearch-string isearch-lazy-highlight-last-string))