emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/isearch.el


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/isearch.el
Date: Wed, 06 Feb 2002 10:25:15 -0500

Index: emacs/lisp/isearch.el
diff -c emacs/lisp/isearch.el:1.208 emacs/lisp/isearch.el:1.209
*** emacs/lisp/isearch.el:1.208 Wed Dec 19 17:48:02 2001
--- emacs/lisp/isearch.el       Wed Feb  6 10:25:15 2002
***************
*** 616,622 ****
  
  (defun isearch-update ()
    ;; Called after each command to update the display.  
!   (if (null unread-command-events)
        (progn
          (if (not (input-pending-p))
              (isearch-message))
--- 616,623 ----
  
  (defun isearch-update ()
    ;; Called after each command to update the display.  
!   (if (and (null unread-command-events)
!          (null executing-kbd-macro))
        (progn
          (if (not (input-pending-p))
              (isearch-message))
***************
*** 2002,2007 ****
--- 2003,2009 ----
  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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]