Mercurial > emacs
changeset 93162:9ad0e809937c
(vc-hg-state): Return 'edited for removed files.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Sun, 23 Mar 2008 19:31:22 +0000 |
parents | e3b492a971e1 |
children | 521810ff0616 |
files | lisp/ChangeLog lisp/vc-hg.el |
diffstat | 2 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Sun Mar 23 18:54:54 2008 +0000 +++ b/lisp/ChangeLog Sun Mar 23 19:31:22 2008 +0000 @@ -1,5 +1,7 @@ 2008-03-23 Dan Nicolaescu <dann@ics.uci.edu> + * vc-hg.el (vc-hg-state): Return 'edited for removed files. + * bindings.el (standard-mode-line-modes): Avoid duplicating a string. * vc-cvs.el (vc-cvs-parse-status): Note there are problems with
--- a/lisp/vc-hg.el Sun Mar 23 18:54:54 2008 +0000 +++ b/lisp/vc-hg.el Sun Mar 23 19:31:22 2008 +0000 @@ -176,7 +176,7 @@ ((eq state ?A) 'added) ((eq state ?M) 'edited) ((eq state ?I) 'ignored) - ((eq state ?R) 'unregistered) + ((eq state ?R) 'edited) ((eq state ??) 'unregistered) ((eq state ?C) 'up-to-date) ;; Older mercurials use this (t 'up-to-date)))))))