;;; vc-svn.el --- non-resident support for Subversion version-control
-;; Copyright (C) 1995,98,99,2000,2001,2002 Free Software Foundation, Inc.
+;; Copyright (C) 1995,98,99,2000,2001,02,2003 Free Software Foundation, Inc.
;; Author: FSF (see vc.el for full credits)
;; Maintainer: Stefan Monnier <monnier@gnu.org>
;;;###autoload (load "vc-svn")
;;;###autoload (vc-svn-registered f)))
+;;;###autoload
+(add-to-list 'completion-ignored-extensions ".svn/")
+
(defun vc-svn-registered (file)
"Check if FILE is SVN registered."
(when (file-readable-p (expand-file-name ".svn/entries"
(concat "-r" rev))
switches)))
+(defun vc-svn-delete-file (file)
+ (vc-svn-command nil 0 file "remove"))
+
(defun vc-svn-rename-file (old new)
(vc-svn-command nil 0 new "move" (file-relative-name old)))