]> git.eshelyaron.com Git - emacs.git/commitdiff
2010-02-17 Mark A. Hershberger <mah@everybody.org>
authorMark A. Hershberger <mah@everybody.org>
Wed, 17 Feb 2010 21:39:21 +0000 (16:39 -0500)
committerMark A. Hershberger <mah@everybody.org>
Wed, 17 Feb 2010 21:39:21 +0000 (16:39 -0500)
* vc-bzr.el: fix typo in Known Bugs section.

* isearch.el (isearch-update-post-hook): New hook
(isearch-update): Use the new hook.

lisp/ChangeLog
lisp/isearch.el
lisp/vc-bzr.el

index 17655fe4f6b6177954b283838fde3c9b9c1de407..047f2b03b62195e3e95e7915d2047c095ba3162f 100644 (file)
@@ -1,3 +1,10 @@
+2010-02-17  Mark A. Hershberger  <mah@everybody.org>
+
+       * vc-bzr.el: fix typo in Known Bugs section.
+
+       * isearch.el (isearch-update-post-hook): New hook
+       (isearch-update): Use the new hook.
+
 2010-02-16  Michael Albinus  <michael.albinus@gmx.de>
 
        * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix
index d0ad330c5c0b97424bf593d9daa0c87da3fdfb04..0061e7a64ed03ad0c9c6f269779feabb498733eb 100644 (file)
@@ -156,6 +156,9 @@ command history."
 (defvar isearch-mode-hook nil
   "Function(s) to call after starting up an incremental search.")
 
+(defvar isearch-update-post-hook nil
+  "Function(s) to call after isearch has found matches in the buffer.")
+
 (defvar isearch-mode-end-hook nil
   "Function(s) to call after terminating an incremental search.
 When these functions are called, `isearch-mode-end-hook-quit'
@@ -868,7 +871,8 @@ It is called by the function `isearch-forward' and other related functions."
     (isearch-lazy-highlight-new-loop))
   ;; We must prevent the point moving to the end of composition when a
   ;; part of the composition has just been searched.
-  (setq disable-point-adjustment t))
+  (setq disable-point-adjustment t)
+  (run-hooks 'isearch-update-post-hook))
 
 (defun isearch-done (&optional nopush edit)
   "Exit Isearch mode.
index efeb19de4c7665fb1d91d2807b25e85626f032a4..b0dbb8ec1929bd7987e0ec7eb9f5043cec5de1ce 100644 (file)
@@ -35,7 +35,7 @@
 ;; Known bugs
 ;; ==========
 
-;; When edititing a symlink and *both* the symlink and its target
+;; When editing a symlink and *both* the symlink and its target
 ;; are bzr-versioned, `vc-bzr` presently runs `bzr status` on the
 ;; symlink, thereby not detecting whether the actual contents
 ;; (that is, the target contents) are changed.