# HG changeset patch # User Stefan Monnier # Date 1208190083 0 # Node ID 603bcf433ab2a33d5a85bf01b5e0ef616e2a6f3d # Parent 7009491917600125912262e0d606f0d8b4a03983 (vc-status-update): Fix typo. diff -r 700949191760 -r 603bcf433ab2 lisp/ChangeLog --- a/lisp/ChangeLog Mon Apr 14 16:16:01 2008 +0000 +++ b/lisp/ChangeLog Mon Apr 14 16:21:23 2008 +0000 @@ -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 -r 700949191760 -r 603bcf433ab2 lisp/vc.el --- a/lisp/vc.el Mon Apr 14 16:16:01 2008 +0000 +++ b/lisp/vc.el Mon Apr 14 16:21:23 2008 +0000 @@ -3030,7 +3030,7 @@ (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)))