aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/vc-svn.el
diff options
context:
space:
mode:
authorEric S. Raymond <[email protected]>2008-05-02 17:47:25 +0000
committerEric S. Raymond <[email protected]>2008-05-02 17:47:25 +0000
commit70e2f6c752f2d83bd013406a96b809572203e8fa (patch)
treee38864b2dbbf1211b146915a10da6b481d840df6 /lisp/vc-svn.el
parent991ae4e4f8e8cefd2a83e7ffb4148d358c750486 (diff)
Clean up vc*-revision-granularity and vc*-checkout-model.
Diffstat (limited to 'lisp/vc-svn.el')
-rw-r--r--lisp/vc-svn.el10
1 files changed, 3 insertions, 7 deletions
diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el
index 053c7fd196..5ddedc364a 100644
--- a/lisp/vc-svn.el
+++ b/lisp/vc-svn.el
@@ -91,8 +91,9 @@ If you want to force an empty list of arguments, use t."
;;; Properties of the backend
-(defun vc-svn-revision-granularity ()
- 'repository)
+(defun vc-svn-revision-granularity () 'repository)
+(defun vc-svn-checkout-model (files) 'implicit)
+
;;;
;;; State-querying functions
;;;
@@ -193,11 +194,6 @@ RESULT is a list of conses (FILE . STATE) for directory DIR."
(vc-svn-registered file)
(vc-file-getprop file 'vc-working-revision))
-(defun vc-svn-checkout-model (files)
- "SVN-specific version of `vc-checkout-model'."
- ;; It looks like Subversion has no equivalent of CVSREAD.
- 'implicit)
-
;; vc-svn-mode-line-string doesn't exist because the default implementation
;; works just fine.