]> git.eshelyaron.com Git - emacs.git/commitdiff
* vc.el (vc-directory, vc-update-change-log): Remove check for
authorMichael Albinus <michael.albinus@gmx.de>
Sat, 26 Jan 2008 14:53:55 +0000 (14:53 +0000)
committerMichael Albinus <michael.albinus@gmx.de>
Sat, 26 Jan 2008 14:53:55 +0000 (14:53 +0000)
Tramp.  Both functions work for it, though pretty slow
(`vc-directory').  Maybe the implementation can be optimized.

lisp/vc.el

index 35c371a60389d05d851da9b132466a2d339dfea6..0069c124866512b924a05b1408807a130c38678e 100644 (file)
@@ -2571,8 +2571,6 @@ With prefix arg READ-SWITCHES, specify a value to override
   (interactive "DDired under VC (directory): \nP")
   (let ((vc-dired-switches (concat vc-dired-listing-switches
                                    (if vc-dired-recurse "R" ""))))
-    (if (eq (string-match tramp-file-name-regexp dir) 0)
-        (error "Sorry, vc-directory does not work over Tramp"))
     (if read-switches
         (setq vc-dired-switches
               (read-string "Dired listing switches: "
@@ -3229,9 +3227,6 @@ log entries should be gathered."
           ;; it should find all relevant files relative to
           ;; the default-directory.
          nil)))
-  (dolist (file (or args (list default-directory)))
-    (if (eq (string-match tramp-file-name-regexp file) 0)
-        (error "Sorry, vc-update-change-log does not work over Tramp")))
   (vc-call-backend (vc-responsible-backend default-directory)
                    'update-changelog args))