branch: elpa/projectile
commit 81a7e5d4054d3399d5916d99c9d48ba8b91398bd
Author: Bozhidar Batsov <bozhi...@batsov.dev>
Commit: Bozhidar Batsov <bozhi...@batsov.dev>

    Rename the cache file to .projectile-cache.eld
---
 doc/modules/ROOT/pages/configuration.adoc | 4 ++--
 projectile.el                             | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/doc/modules/ROOT/pages/configuration.adoc 
b/doc/modules/ROOT/pages/configuration.adoc
index f0cffc0f79..59ee9079e7 100644
--- a/doc/modules/ROOT/pages/configuration.adoc
+++ b/doc/modules/ROOT/pages/configuration.adoc
@@ -151,12 +151,12 @@ be added to the cache automatically the first time you 
open them.
 
 The project cache is persistent and will be preserved during Emacs restarts.
 Each project gets its own cache file, that will be placed in the root folder 
of the
-project. The name of the cache file is `.projectile.cache` by default, but you 
can tweak it
+project. The name of the cache file is `.projectile-cache.eld` by default, but 
you can tweak it
 if you want to:
 
 [source,elisp]
 ----
-(setq projectile-cache-file "foo.bar")
+(setq projectile-cache-file "foo.eld")
 ----
 
 The cache file will be loaded automatically in memory the first time you 
trigger
diff --git a/projectile.el b/projectile.el
index 804445e41a..ce041cda38 100644
--- a/projectile.el
+++ b/projectile.el
@@ -224,7 +224,7 @@ When nil Projectile will consider the current directory the 
project root."
   :group 'projectile
   :type 'string)
 
-(defcustom projectile-cache-file  ".projectile.cache"
+(defcustom projectile-cache-file  ".projectile-cache.eld"
   "The name of Projectile's cache.
 It's relative to the project root."
   :group 'projectile

Reply via email to