diff options
| author | Eric S. Raymond <esr@snark.thyrsus.com> | 2008-05-07 21:27:41 +0000 |
|---|---|---|
| committer | Eric S. Raymond <esr@snark.thyrsus.com> | 2008-05-07 21:27:41 +0000 |
| commit | 4903369afeabaf913164f07fccd285e8284627ff (patch) | |
| tree | 493ff84060d00c69c71c88fe713f191f52a24792 /lisp/vc-svn.el | |
| parent | 9ba4a350430255da3e7465325b66ee99e5fdae7e (diff) | |
| download | emacs-4903369afeabaf913164f07fccd285e8284627ff.tar.gz | |
Remove VC-Dired and backend dir-state methods.
Diffstat (limited to 'lisp/vc-svn.el')
| -rw-r--r-- | lisp/vc-svn.el | 11 |
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) |
