diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2008-03-21 05:53:48 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2008-03-21 05:53:48 +0000 |
commit | 6a3f9bb72de2ea13801701c98fe27fbf41d6a4f4 (patch) | |
tree | ed29e9f4d13739ac4bf06465fac758b626aeb548 /lisp/vc-bzr.el | |
parent | 5371d722ecd94db9d5b3b21f4b91d073a38bd73b (diff) | |
download | emacs-6a3f9bb72de2ea13801701c98fe27fbf41d6a4f4.tar.gz |
* vc-hg.el (vc-hg-state):
* vc-git.el (vc-git-state):
* vc-cvs.el (vc-cvs-parse-status):
* vc-bzr.el (vc-bzr-state): Return 'added when the file is in that
state.
Diffstat (limited to 'lisp/vc-bzr.el')
-rw-r--r-- | lisp/vc-bzr.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-bzr.el b/lisp/vc-bzr.el index cbfdfaab3ba..93ffed16c48 100644 --- a/lisp/vc-bzr.el +++ b/lisp/vc-bzr.el @@ -223,7 +223,7 @@ If any error occurred in running `bzr status', then return nil." (if (cdr result) (message "Warnings in `bzr' output: %s" (cdr result))) (cdr (assq (car result) - '((added . edited) + '((added . added) (kindchanged . edited) (renamed . edited) (modified . edited) |