diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2009-01-29 08:53:37 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2009-01-29 08:53:37 +0000 |
commit | bcca751d83bb8aacf53fc4e166534cb4e9def821 (patch) | |
tree | 64dce2334580737273caa2987881ccbc565da30e /lisp/vc-svn.el | |
parent | 3c8ccebbcd0edfef52b72b06c6a6b329ecea0939 (diff) | |
download | emacs-bcca751d83bb8aacf53fc4e166534cb4e9def821.tar.gz |
Exclude VCS metadata dirs from completion.
* bindings.el (completion-ignored-extensions):
Add entries for VCS metadata directories (CVS/, .svn, etc).
* pcvs.el (completion-ignored-extensions):
* vc-svn.el (completion-ignored-extensions): Don't add VCS-specific
directory, now done in bindings.el.
Diffstat (limited to 'lisp/vc-svn.el')
-rw-r--r-- | lisp/vc-svn.el | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el index 5c444ffee72..884ab4d2879 100644 --- a/lisp/vc-svn.el +++ b/lisp/vc-svn.el @@ -119,9 +119,6 @@ want to force an empty list of arguments, use t." ;;;###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 (concat vc-svn-admin-directory |