changeset 93118:01d3fd1a2cfe

* 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.
author Dan Nicolaescu <dann@ics.uci.edu>
date Fri, 21 Mar 2008 05:53:48 +0000
parents 87f463ae1530
children 3546cd0119d2
files lisp/ChangeLog lisp/vc-bzr.el lisp/vc-cvs.el lisp/vc-git.el lisp/vc-hg.el
diffstat 5 files changed, 13 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Fri Mar 21 01:49:18 2008 +0000
+++ b/lisp/ChangeLog	Fri Mar 21 05:53:48 2008 +0000
@@ -1,3 +1,11 @@
+2008-03-21  Dan Nicolaescu  <dann@ics.uci.edu>
+
+	* 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.
+
 2008-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
 
 	* progmodes/compile.el (compile):
--- a/lisp/vc-bzr.el	Fri Mar 21 01:49:18 2008 +0000
+++ b/lisp/vc-bzr.el	Fri Mar 21 05:53:48 2008 +0000
@@ -223,7 +223,7 @@
       (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)
--- a/lisp/vc-cvs.el	Fri Mar 21 01:49:18 2008 +0000
+++ b/lisp/vc-cvs.el	Fri Mar 21 05:53:48 2008 +0000
@@ -860,6 +860,7 @@
             ((string-match "Locally Modified" status)             'edited)
             ((string-match "Needs Merge" status)                  'needs-merge)
             ((string-match "Needs \\(Checkout\\|Patch\\)" status) 'needs-patch)
+            ((string-match "Locally Added" status)                'added)
             (t 'edited))))))))
 
 (defun vc-cvs-dir-state-heuristic (dir)
--- a/lisp/vc-git.el	Fri Mar 21 01:49:18 2008 +0000
+++ b/lisp/vc-git.el	Fri Mar 21 05:53:48 2008 +0000
@@ -146,9 +146,9 @@
   ;; FIXME: This can't set 'ignored yet
   (vc-git--call nil "add" "--refresh" "--" (file-relative-name file))
   (let ((diff (vc-git--run-command-string file "diff-index" "-z" "HEAD" "--")))
-    (if (and diff (string-match ":[0-7]\\{6\\} [0-7]\\{6\\} [0-9a-f]\\{40\\} [0-9a-f]\\{40\\} [ADMU]\0[^\0]+\0"
+    (if (and diff (string-match ":[0-7]\\{6\\} [0-7]\\{6\\} [0-9a-f]\\{40\\} [0-9a-f]\\{40\\} \\([ADMU]\\)\0[^\0]+\0"
                                 diff))
-        'edited
+	(if (string= (match-string 1 diff) "A") 'added 'edited)
       'up-to-date)))
 
 (defun vc-git--ls-files-state (state &rest args)
--- a/lisp/vc-hg.el	Fri Mar 21 01:49:18 2008 +0000
+++ b/lisp/vc-hg.el	Fri Mar 21 05:53:48 2008 +0000
@@ -173,7 +173,7 @@
 	  (let ((state (aref out 0)))
 	    (cond
 	     ((eq state ?=) 'up-to-date)
-	     ((eq state ?A) 'edited)
+	     ((eq state ?A) 'added)
 	     ((eq state ?M) 'edited)
 	     ((eq state ?I) 'ignored)
 	     ((eq state ?R) 'unregistered)