From: Stefan Monnier Date: Mon, 14 Apr 2008 16:21:23 +0000 (+0000) Subject: (vc-status-update): Fix typo. X-Git-Tag: emacs-pretest-23.0.90~6278 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fc6dcd067d75fd45427bb320596f8c5a3baf893f;p=emacs.git (vc-status-update): Fix typo. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 937c4dfdc69..97651c65390 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2008-04-14 Stefan Monnier + + * vc.el (vc-status-update): Fix typo. + 2008-04-14 Tassilo Horn * 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." (cond ((string-lessp nodefile entryfile) (setq node (ewoc-next vc-status node))) - ((string-lessp nodefile entryfile) + ((string-lessp entryfile nodefile) (unless noinsert (ewoc-enter-before vc-status node (apply 'vc-status-create-fileinfo entry)))