emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 7a77ed9: * filecache.el (file-cache-filter-regexps)


From: Glenn Morris
Subject: [Emacs-diffs] master 7a77ed9: * filecache.el (file-cache-filter-regexps): Add lock files (tiny change)
Date: Tue, 24 Feb 2015 07:51:31 +0000

branch: master
commit 7a77ed9147703d9fcaa70868282b9c09d00bfad3
Author: Johan Claesson <address@hidden>
Commit: Glenn Morris <address@hidden>

    * filecache.el (file-cache-filter-regexps): Add lock files (tiny change)
    
    Fixes: debbugs:19516
---
 lisp/ChangeLog    |    5 +++++
 lisp/filecache.el |    3 ++-
 2 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 25b3266..b0a07df 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2015-02-24  Johan Claesson  <address@hidden>  (tiny change)
+
+       * filecache.el (file-cache-filter-regexps):
+       Add lock files.  (Bug#19516)
+
 2015-02-24  Glenn Morris  <address@hidden>
 
        * mail/rmailsum.el (rmail-summary-next-all)
diff --git a/lisp/filecache.el b/lisp/filecache.el
index d036107..fd99ee0 100644
--- a/lisp/filecache.el
+++ b/lisp/filecache.el
@@ -154,11 +154,12 @@
   ;; 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)
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]