summaryrefslogtreecommitdiff
path: root/lisp/vc-svn.el
diff options
context:
space:
mode:
authorEric S. Raymond <esr@snark.thyrsus.com>2008-05-07 21:27:41 +0000
committerEric S. Raymond <esr@snark.thyrsus.com>2008-05-07 21:27:41 +0000
commit4903369afeabaf913164f07fccd285e8284627ff (patch)
tree493ff84060d00c69c71c88fe713f191f52a24792 /lisp/vc-svn.el
parent9ba4a350430255da3e7465325b66ee99e5fdae7e (diff)
downloademacs-4903369afeabaf913164f07fccd285e8284627ff.tar.gz
Remove VC-Dired and backend dir-state methods.
Diffstat (limited to 'lisp/vc-svn.el')
-rw-r--r--lisp/vc-svn.el11
1 files changed, 0 insertions, 11 deletions
diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el
index 92696ee1b4e..b08f050fd55 100644
--- a/lisp/vc-svn.el
+++ b/lisp/vc-svn.el
@@ -146,17 +146,6 @@ If you want to force an empty list of arguments, use t."
"SVN-specific state heuristic."
(vc-svn-state file 'local))
-(defun vc-svn-dir-state (dir &optional localp)
- "Find the SVN state of all files in DIR and its subdirectories."
- (setq localp (or localp (vc-stay-local-p dir)))
- (let ((default-directory dir))
- ;; Don't specify DIR in this command, the default-directory is
- ;; enough. Otherwise it might fail with remote repositories.
- (with-temp-buffer
- (buffer-disable-undo) ;; Because these buffers can get huge
- (vc-svn-command t 0 nil "status" (if localp "-v" "-u"))
- (vc-svn-parse-status))))
-
(defun vc-svn-after-dir-status (callback)
(let ((state-map '((?A . added)
(?C . conflict)