diff options
| author | Stefan Monnier | 2008-04-14 16:21:23 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2008-04-14 16:21:23 +0000 |
| commit | fc6dcd067d75fd45427bb320596f8c5a3baf893f (patch) | |
| tree | 6ad9584ac111d2cb4d2522b8861bf0179988b4a0 | |
| parent | e157d7babcfa6ee568a19fd6b72745454e3e4324 (diff) | |
| download | emacs-fc6dcd067d75fd45427bb320596f8c5a3baf893f.tar.gz emacs-fc6dcd067d75fd45427bb320596f8c5a3baf893f.zip | |
(vc-status-update): Fix typo.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/vc.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 937c4dfdc69..97651c65390 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-04-14 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * vc.el (vc-status-update): Fix typo. | ||
| 4 | |||
| 1 | 2008-04-14 Tassilo Horn <tassilo@member.fsf.org> | 5 | 2008-04-14 Tassilo Horn <tassilo@member.fsf.org> |
| 2 | 6 | ||
| 3 | * doc-view.el (doc-view-mode-map): Bind C-a to image-bol and C-e | 7 | * doc-view.el (doc-view-mode-map): Bind C-a to image-bol and C-e |
diff --git a/lisp/vc.el b/lisp/vc.el index e946191a0e0..b54523fa48f 100644 --- a/lisp/vc.el +++ b/lisp/vc.el | |||
| @@ -3030,7 +3030,7 @@ If NOINSERT, ignore elements on ENTRIES which are not in the ewoc." | |||
| 3030 | (cond | 3030 | (cond |
| 3031 | ((string-lessp nodefile entryfile) | 3031 | ((string-lessp nodefile entryfile) |
| 3032 | (setq node (ewoc-next vc-status node))) | 3032 | (setq node (ewoc-next vc-status node))) |
| 3033 | ((string-lessp nodefile entryfile) | 3033 | ((string-lessp entryfile nodefile) |
| 3034 | (unless noinsert | 3034 | (unless noinsert |
| 3035 | (ewoc-enter-before vc-status node | 3035 | (ewoc-enter-before vc-status node |
| 3036 | (apply 'vc-status-create-fileinfo entry))) | 3036 | (apply 'vc-status-create-fileinfo entry))) |