diff options
| author | Chong Yidong | 2009-10-03 20:40:21 +0000 |
|---|---|---|
| committer | Chong Yidong | 2009-10-03 20:40:21 +0000 |
| commit | 8b440f714308f4fce2465491a08f9e18906d367c (patch) | |
| tree | 03df03ff7882d786f32225231108308a3e1c0398 | |
| parent | 2f79fdf0346c5ca260f706a92f1e2fe0900974e5 (diff) | |
| download | emacs-8b440f714308f4fce2465491a08f9e18906d367c.tar.gz emacs-8b440f714308f4fce2465491a08f9e18906d367c.zip | |
* cedet/ede.el (ede-project-placeholder-cache-file): Default to a file
in user-emacs-directory.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/cedet/ede.el | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 29855de1bd4..2bddb5f6da2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -19,6 +19,8 @@ | |||
| 19 | 19 | ||
| 20 | * cedet/ede.el (ede-target-forms-menu): Don't enable if no | 20 | * cedet/ede.el (ede-target-forms-menu): Don't enable if no |
| 21 | projects exist. | 21 | projects exist. |
| 22 | (ede-project-placeholder-cache-file): Default to a file in | ||
| 23 | user-emacs-directory. | ||
| 22 | 24 | ||
| 23 | * cedet/srecode/map.el (srecode-map-base-template-dir): Look for | 25 | * cedet/srecode/map.el (srecode-map-base-template-dir): Look for |
| 24 | templates in data-directory. | 26 | templates in data-directory. |
diff --git a/lisp/cedet/ede.el b/lisp/cedet/ede.el index 53087e12658..e68169117fa 100644 --- a/lisp/cedet/ede.el +++ b/lisp/cedet/ede.el | |||
| @@ -436,7 +436,7 @@ Do not set this to non-nil globally. It is used internally.") | |||
| 436 | ;;; The EDE persistent cache. | 436 | ;;; The EDE persistent cache. |
| 437 | ;; | 437 | ;; |
| 438 | (defcustom ede-project-placeholder-cache-file | 438 | (defcustom ede-project-placeholder-cache-file |
| 439 | (expand-file-name "~/.projects.ede") | 439 | (expand-file-name "ede-projects" user-emacs-directory) |
| 440 | "File containing the list of projects EDE has viewed." | 440 | "File containing the list of projects EDE has viewed." |
| 441 | :group 'ede | 441 | :group 'ede |
| 442 | :type 'file) | 442 | :type 'file) |