]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove a spurious comma
authorSam Steingold <sds@gnu.org>
Mon, 24 Nov 2014 20:54:07 +0000 (15:54 -0500)
committerSam Steingold <sds@gnu.org>
Mon, 24 Nov 2014 20:54:07 +0000 (15:54 -0500)
* lisp/vc/vc-hooks.el (vc-directory-exclusion-list):
Fix a trivial typo (bug#19171).

lisp/ChangeLog
lisp/vc/vc-hooks.el

index 35141b6557e25b5d8d3c0207691f6e9f011ee9fa..12f81b76693855f693e114715c2a2a12bb5e31c9 100644 (file)
@@ -1,3 +1,8 @@
+2014-11-24  Sam Steingold  <sds@gnu.org>
+
+       * vc/vc-hooks.el (vc-directory-exclusion-list):
+       Fix a trivial typo (bug#19171).
+
 2014-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * vc/vc-hooks.el (vc-state-base-face): Don't override
index 9a277db8e0fe7adac63367045fc545501211f43a..3a2ad40ee358ac34e03945024369405b8ae72b19 100644 (file)
@@ -124,7 +124,7 @@ An empty list disables VC altogether."
 ;; Note: we don't actually have a darcs back end yet.
 ;; Also, Meta-CVS (corresponding to MCVS) is unsupported.
 (defcustom vc-directory-exclusion-list (purecopy '("SCCS" "RCS" "CVS" "MCVS"
-                                        ".src", ".svn" ".git" ".hg" ".bzr"
+                                        ".src" ".svn" ".git" ".hg" ".bzr"
                                         "_MTN" "_darcs" "{arch}"))
   "List of directory names to be ignored when walking directory trees."
   :type '(repeat string)