diff options
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/vc-dispatcher.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7f7c3f043c1..383dfdb2c79 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2008-05-26 Dan Nicolaescu <dann@ics.uci.edu> + + * vc-dispatcher.el (vc-resynch-window): Fix mode-line updating. + 2008-05-26 Stefan Monnier <monnier@iro.umontreal.ca> * diff-mode.el (diff-context-mid-hunk-header-re): New const. diff --git a/lisp/vc-dispatcher.el b/lisp/vc-dispatcher.el index 8c56b982dbf..2c9b93192a2 100644 --- a/lisp/vc-dispatcher.el +++ b/lisp/vc-dispatcher.el @@ -492,7 +492,7 @@ editing!" (and (not view-mode) (not (eq (get major-mode 'mode-class) 'special)) (view-mode-enter)))) - (run-hook-with-args 'modeline-hook buffer-file-name)) + (run-hook-with-args 'mode-line-hook buffer-file-name)) (kill-buffer (current-buffer))))) (defun vc-resynch-buffer (file &optional keep noquery) |