]> git.eshelyaron.com Git - emacs.git/commitdiff
* filecache.el (file-cache-filter-regexps): Add lock files (tiny change)
authorJohan Claesson <johanclaesson@bredband.net>
Tue, 24 Feb 2015 07:50:44 +0000 (23:50 -0800)
committerGlenn Morris <rgm@gnu.org>
Tue, 24 Feb 2015 07:50:44 +0000 (23:50 -0800)
Fixes: debbugs:19516
lisp/ChangeLog
lisp/filecache.el

index 25b3266675478b3f1fbe04baa202aa7ac4195b02..b0a07df8064bae32f331eac367cf5cdba9f89ba7 100644 (file)
@@ -1,3 +1,8 @@
+2015-02-24  Johan Claesson  <johanclaesson@bredband.net>  (tiny change)
+
+       * filecache.el (file-cache-filter-regexps):
+       Add lock files.  (Bug#19516)
+
 2015-02-24  Glenn Morris  <rgm@gnu.org>
 
        * mail/rmailsum.el (rmail-summary-next-all)
index d036107d6fb7f55b2840bc094f90eba95546c456..fd99ee0fb93f4e469425cdef3066a6148243fd35 100644 (file)
   ;; These are also used in buffers containing lines of file names,
   ;; so the end-of-name is matched with $ rather than \\'.
   (list "~$" "\\.o$" "\\.exe$" "\\.a$" "\\.elc$" ",v$" "\\.output$"
-       "\\.$" "#$" "\\.class$")
+       "\\.$" "#$" "\\.class$" "/\\.#")
   "List of regular expressions used as filters by the file cache.
 File names which match these expressions will not be added to the cache.
 Note that the functions `file-cache-add-file' and `file-cache-add-file-list'
 do not use this variable."
+  :version "25.1"                       ; added "/\\.#"
   :type '(repeat regexp)
   :group 'file-cache)