emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r99513: 2010-02-17 Mark A. Hershberge


From: Mark A. Hershberger
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r99513: 2010-02-17 Mark A. Hershberger <address@hidden>
Date: Wed, 17 Feb 2010 16:39:21 -0500
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 99513
committer: Mark A. Hershberger <address@hidden>
branch nick: local
timestamp: Wed 2010-02-17 16:39:21 -0500
message:
  2010-02-17  Mark A. Hershberger  <address@hidden>
  
        * vc-bzr.el: fix typo in Known Bugs section.
  
        * isearch.el (isearch-update-post-hook): New hook
        (isearch-update): Use the new hook.
modified:
  lisp/ChangeLog
  lisp/isearch.el
  lisp/vc-bzr.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-02-16 16:03:29 +0000
+++ b/lisp/ChangeLog    2010-02-17 21:39:21 +0000
@@ -1,3 +1,10 @@
+2010-02-17  Mark A. Hershberger  <address@hidden>
+
+       * 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  <address@hidden>
 
        * net/tramp.el (tramp-do-copy-or-rename-file-out-of-band): Fix

=== modified file 'lisp/isearch.el'
--- a/lisp/isearch.el   2010-01-22 16:32:31 +0000
+++ b/lisp/isearch.el   2010-02-17 21:39:21 +0000
@@ -156,6 +156,9 @@
 (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 @@
     (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.

=== modified file 'lisp/vc-bzr.el'
--- a/lisp/vc-bzr.el    2010-02-06 04:23:59 +0000
+++ b/lisp/vc-bzr.el    2010-02-17 21:39:21 +0000
@@ -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.


reply via email to

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