Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
154d394b
Commit
154d394b
authored
Feb 18, 2010
by
Kenichi Handa
Browse files
from trunk
parents
ebaf11b6
ba5bf642
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
2 deletions
+13
-2
lisp/ChangeLog
lisp/ChangeLog
+7
-0
lisp/isearch.el
lisp/isearch.el
+5
-1
lisp/vc-bzr.el
lisp/vc-bzr.el
+1
-1
No files found.
lisp/ChangeLog
View file @
154d394b
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
...
...
lisp/isearch.el
View file @
154d394b
...
...
@@ -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.
...
...
lisp/vc-bzr.el
View file @
154d394b
...
...
@@ -35,7 +35,7 @@
;; Known bugs
;; ==========
;; When editi
ti
ng 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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment