diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2007-06-13 00:04:46 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2007-06-13 00:04:46 +0000 |
commit | 5f96d7d6312545848649ae685b573b49f9c1a5f8 (patch) | |
tree | b0f247325a7560478ca50f79287d8a97cb2fd68e /lisp/filesets.el | |
parent | c093939ce94062f071bda8ef06222579476092d4 (diff) | |
download | emacs-5f96d7d6312545848649ae685b573b49f9c1a5f8.tar.gz |
(filesets-menu-cache-file): Use user-emacs-directory.
Diffstat (limited to 'lisp/filesets.el')
-rw-r--r-- | lisp/filesets.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/filesets.el b/lisp/filesets.el index e13c4a321dd..8b18f910a66 100644 --- a/lisp/filesets.el +++ b/lisp/filesets.el @@ -354,7 +354,7 @@ See `add-submenu' for documentation." (defcustom filesets-menu-cache-file (if filesets-running-xemacs "~/.xemacs/filesets-cache.el" - "~/.emacs.d/filesets-cache.el") + (concat user-emacs-directory "filesets-cache.el")) "*File to be used for saving the filesets menu between sessions. Set this to \"\", to disable caching of menus. Don't forget to check out `filesets-menu-ensure-use-cached'." |