emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs/lisp isearch.el


From: Juri Linkov
Subject: [Emacs-diffs] emacs/lisp isearch.el
Date: Sat, 22 Nov 2008 20:40:44 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Juri Linkov <jurta>     08/11/22 20:40:44

Modified files:
        lisp           : isearch.el 

Log message:
        (isearch-mode): Change the order of calling
        `isearch-update' and running the `isearch-mode-hook' to call
        `isearch-update' with Isearch parameters set in this hook.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/isearch.el?cvsroot=emacs&r1=1.338&r2=1.339

Patches:
Index: isearch.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/isearch.el,v
retrieving revision 1.338
retrieving revision 1.339
diff -u -b -r1.338 -r1.339
--- isearch.el  21 Nov 2008 10:13:00 -0000      1.338
+++ isearch.el  22 Nov 2008 20:40:44 -0000      1.339
@@ -801,8 +801,8 @@
   (isearch-push-state)
 
   (setq overriding-terminal-local-map isearch-mode-map)
-  (isearch-update)
   (run-hooks 'isearch-mode-hook)
+  (isearch-update)
 
   (add-hook 'mouse-leave-buffer-hook 'isearch-done)
   (add-hook 'kbd-macro-termination-hook 'isearch-done)




reply via email to

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