mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
* filecache.el (file-cache-filter-regexps): Add lock files (tiny change)
Fixes: debbugs:19516
This commit is contained in:
parent
f418e991c0
commit
7a77ed9147
2 changed files with 7 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue