+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.
;;; 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)
: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
"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