aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/vc-git.el
diff options
context:
space:
mode:
authorEric S. Raymond2008-05-02 17:47:25 +0000
committerEric S. Raymond2008-05-02 17:47:25 +0000
commit70e2f6c752f2d83bd013406a96b809572203e8fa (patch)
treee38864b2dbbf1211b146915a10da6b481d840df6 /lisp/vc-git.el
parent991ae4e4f8e8cefd2a83e7ffb4148d358c750486 (diff)
downloademacs-70e2f6c752f2d83bd013406a96b809572203e8fa.tar.gz
emacs-70e2f6c752f2d83bd013406a96b809572203e8fa.zip
Clean up vc*-revision-granularity and vc*-checkout-model.
Diffstat (limited to 'lisp/vc-git.el')
-rw-r--r--lisp/vc-git.el8
1 files changed, 3 insertions, 5 deletions
diff --git a/lisp/vc-git.el b/lisp/vc-git.el
index 9c8ebfc9993..ed13cb92081 100644
--- a/lisp/vc-git.el
+++ b/lisp/vc-git.el
@@ -55,7 +55,7 @@
55;; - dir-state (dir) OK 55;; - dir-state (dir) OK
56;; * working-revision (file) OK 56;; * working-revision (file) OK
57;; - latest-on-branch-p (file) NOT NEEDED 57;; - latest-on-branch-p (file) NOT NEEDED
58;; * checkout-model (file) OK 58;; * checkout-model (files) OK
59;; - workfile-unchanged-p (file) OK 59;; - workfile-unchanged-p (file) OK
60;; - mode-line-string (file) OK 60;; - mode-line-string (file) OK
61;; - prettify-state-info (file) OK 61;; - prettify-state-info (file) OK
@@ -118,8 +118,8 @@
118 118
119;;; BACKEND PROPERTIES 119;;; BACKEND PROPERTIES
120 120
121(defun vc-git-revision-granularity () 121(defun vc-git-revision-granularity () 'repository)
122 'repository) 122(defun vc-git-checkout-model (files) 'implicit)
123 123
124;;; STATE-QUERYING FUNCTIONS 124;;; STATE-QUERYING FUNCTIONS
125 125
@@ -195,8 +195,6 @@
195 (match-string 2 str) 195 (match-string 2 str)
196 str))) 196 str)))
197 197
198(defun vc-git-checkout-model (files) 'implicit)
199
200(defun vc-git-workfile-unchanged-p (file) 198(defun vc-git-workfile-unchanged-p (file)
201 (eq 'up-to-date (vc-git-state file))) 199 (eq 'up-to-date (vc-git-state file)))
202 200