From f1b587064a41ef495ef7a87b992dbdd711d557da Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 10 Jun 2005 21:14:10 +0000 Subject: [PATCH] (vc-registered): Explicitly disable VC for URL files. --- lisp/url/url-handlers.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lisp/url/url-handlers.el b/lisp/url/url-handlers.el index 68bf0ec7ab5..12db63aade8 100644 --- a/lisp/url/url-handlers.el +++ b/lisp/url/url-handlers.el @@ -155,6 +155,9 @@ the arguments that would have been passed to OPERATION." ;; These are operations that we do not support yet (DAV!!!) (put 'file-writable-p 'url-file-handlers 'ignore) (put 'file-symlink-p 'url-file-handlers 'ignore) +;; Just like for ange-ftp: let's not waste time trying to look for RCS/foo,v +;; files and such since we can't do anything clever with them anyway. +(put 'vc-registered 'url-file-handlers 'ignore) (defun url-handler-expand-file-name (file &optional base) (if (file-name-absolute-p file) -- 2.39.5