summaryrefslogtreecommitdiff
path: root/lisp/vc-git.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2008-03-21 17:53:04 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2008-03-21 17:53:04 +0000
commit45b24b4de643475dc82737a89bf9d1c250ce3d9e (patch)
tree8613ae3aeedd29793f98a06f9a8503513a08b83e /lisp/vc-git.el
parente345c46e5613f29d17a1c9e6c663c80925e33129 (diff)
downloademacs-45b24b4de643475dc82737a89bf9d1c250ce3d9e.tar.gz
* vc-hooks.el (vc-default-mode-line-string): Add case for added files.
* vc.el (vc-default-dired-state-info): Use just "modified". * vc-cvs.el (vc-cvs-state-heuristic): Turn rev 0 into `added'. (vc-cvs-mode-line-string): Make use of the better default. (vc-cvs-parse-entry): Use the new `added'. (vc-cvs-dired-state-info): Remove. * vc-svn.el (vc-svn-dired-state-info): Remove. * vc-hg.el (vc-hg-dired-state-info): Remove. * vc-git.el (vc-git-dired-state-info): Remove.
Diffstat (limited to 'lisp/vc-git.el')
-rw-r--r--lisp/vc-git.el8
1 files changed, 0 insertions, 8 deletions
diff --git a/lisp/vc-git.el b/lisp/vc-git.el
index 888d2aaddf2..8bbb16a62a0 100644
--- a/lisp/vc-git.el
+++ b/lisp/vc-git.el
@@ -199,14 +199,6 @@
(propertize def-ml
'help-echo (concat help-echo "\nCurrent branch: " branch)))))
-(defun vc-git-dired-state-info (file)
- "Git-specific version of `vc-dired-state-info'."
- (let ((git-state (vc-state file)))
- (if (eq git-state 'edited)
- "(modified)"
- ;; fall back to the default VC representation
- (vc-default-dired-state-info 'Git file))))
-
;; Variable used to keep the intermediate results for vc-git-status.
(defvar vc-git-status-result nil)