]> git.eshelyaron.com Git - emacs.git/commitdiff
* cedet/semantic/db-file.el (semanticdb-default-save-directory):
authorChong Yidong <cyd@stupidchicken.com>
Sun, 4 Oct 2009 01:03:51 +0000 (01:03 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Sun, 4 Oct 2009 01:03:51 +0000 (01:03 +0000)
* cedet/srecode/map.el (srecode-map-save-file):
* cedet/ede.el (ede-project-placeholder-cache-file): Use
locate-user-emacs-file.  Suggested by Juanma Barranquero.

lisp/ChangeLog
lisp/cedet/ede.el
lisp/cedet/semantic/db-file.el
lisp/cedet/srecode/map.el

index eeb3770db6bb6783f827d7f6cc19cd0e4e76cda4..cfc66b8bd05e4e077b9859c5efed64f30e3031fa 100644 (file)
@@ -1,3 +1,10 @@
+2009-10-04  Chong Yidong  <cyd@stupidchicken.com>
+
+       * cedet/semantic/db-file.el (semanticdb-default-save-directory):
+       * cedet/srecode/map.el (srecode-map-save-file):
+       * cedet/ede.el (ede-project-placeholder-cache-file): Use
+       locate-user-emacs-file.  Suggested by Juanma Barranquero.
+
 2009-10-04  Glenn Morris  <rgm@gnu.org>
 
        * window.el (window-full-height-p): Add doc string.
index e3f632ac761fbec6f47500708a56efe416bd0d97..03abf93704ef62435faabe88c6f47d4f3f519dc6 100644 (file)
@@ -436,7 +436,7 @@ Do not set this to non-nil globally.  It is used internally.")
 ;;; The EDE persistent cache.
 ;;
 (defcustom ede-project-placeholder-cache-file
-  (expand-file-name "ede-projects.el" user-emacs-directory)
+  (locate-user-emacs-file "ede-projects.el" ".projects.ede")
   "File containing the list of projects EDE has viewed."
   :group 'ede
   :type 'file)
index b3e3c7f70f8c21a12b6ab28152da73d61bc88691..4bd042ecefed5cd610f94484bb8a2f7cb2ad0d8a 100644 (file)
@@ -43,7 +43,7 @@
   :type 'string)
 
 (defcustom semanticdb-default-save-directory
-  (expand-file-name "semanticdb" user-emacs-directory)
+  (locate-user-emacs-file "semanticdb" ".semanticdb")
   "Directory name where semantic cache files are stored.
 If this value is nil, files are saved in the current directory.  If the value
 is a valid directory, then it overrides `semanticdb-default-file-name' and
index 3c841386ab283ee98c219e5a713ba15ae97cd71e..bdd6b21ef3af9c4afb9d1004e36fab4f391defe6 100644 (file)
@@ -45,7 +45,7 @@
   "The current map for global SRecode templates.")
 
 (defcustom srecode-map-save-file
-  (expand-file-name "srecode-map.el" user-emacs-directory)
+  (locate-user-emacs-file "srecode-map.el" ".srecode/srecode-map")
   "The save location for SRecode's map file.
 If the save file is nil, then the MAP is not saved between sessions."
   :group 'srecode