aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRudi Schlatte2025-02-24 18:04:46 +0100
committerStefan Kangas2025-02-24 18:24:41 +0100
commitbca04d3c580e3bd3d787274973d33ce95098d423 (patch)
tree46b307295aebaf7ba169d210b3c07599db249d81
parenta205d554522340e23540bdda63c80965ddd64951 (diff)
downloademacs-bca04d3c580e3bd3d787274973d33ce95098d423.tar.gz
emacs-bca04d3c580e3bd3d787274973d33ce95098d423.zip
Add ".jj" to vc-directory-exclusion-list
* lisp/vc/vc-hooks.el (vc-directory-exclusion-list): Add ".jj", a directory used by the jujutsu version control system. (Bug#76524)
-rw-r--r--lisp/vc/vc-hooks.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/vc/vc-hooks.el b/lisp/vc/vc-hooks.el
index 1b628bf0c16..d6dcf9d421b 100644
--- a/lisp/vc/vc-hooks.el
+++ b/lisp/vc/vc-hooks.el
@@ -123,7 +123,8 @@ An empty list disables VC altogether."
123;; The Arch back end will be retrieved and fixed if it is ever required. 123;; The Arch back end will be retrieved and fixed if it is ever required.
124(defcustom vc-directory-exclusion-list '("SCCS" "RCS" "CVS" "MCVS" 124(defcustom vc-directory-exclusion-list '("SCCS" "RCS" "CVS" "MCVS"
125 ".src" ".svn" ".git" ".hg" ".bzr" 125 ".src" ".svn" ".git" ".hg" ".bzr"
126 "_MTN" "_darcs" "{arch}" ".repo") 126 "_MTN" "_darcs" "{arch}" ".repo"
127 ".jj")
127 "List of directory names to be ignored when walking directory trees." 128 "List of directory names to be ignored when walking directory trees."
128 :type '(repeat string) 129 :type '(repeat string)
129 :group 'vc) 130 :group 'vc)