summaryrefslogtreecommitdiff
path: root/lisp/vc/vc-svn.el
diff options
context:
space:
mode:
authorPhilip Kaludercic <philipk@posteo.net>2022-10-06 17:04:31 +0200
committerPhilip Kaludercic <philipk@posteo.net>2022-10-06 22:03:15 +0200
commitb6132d84e94e317a8eea13a7a71a1b2d6f94153e (patch)
tree9750ee5bf72661178b54bd9c363f9207b3595428 /lisp/vc/vc-svn.el
parent132e4fbbcb0d92ac1667a670adf05b7475fc6b13 (diff)
downloademacs-b6132d84e94e317a8eea13a7a71a1b2d6f94153e.tar.gz
emacs-b6132d84e94e317a8eea13a7a71a1b2d6f94153e.tar.bz2
emacs-b6132d84e94e317a8eea13a7a71a1b2d6f94153e.zip
* lisp/vc/vc-svn.el (vc-svn-clone): Add 'clone' implementation
Diffstat (limited to 'lisp/vc/vc-svn.el')
-rw-r--r--lisp/vc/vc-svn.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/vc/vc-svn.el b/lisp/vc/vc-svn.el
index 08b53a7169f..cb50a37e09a 100644
--- a/lisp/vc/vc-svn.el
+++ b/lisp/vc/vc-svn.el
@@ -817,6 +817,9 @@ Set file properties accordingly. If FILENAME is non-nil, return its status."
"info" "--show-item" "repos-root-url")
(buffer-substring-no-properties (point-min) (1- (point-max))))))
+(defun vc-svn-clone (remote directory)
+ (vc-svn-command nil 0 '() "checkout" remove directory))
+
(provide 'vc-svn)
;;; vc-svn.el ends here