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