diff options
| author | Chong Yidong | 2007-06-13 00:03:39 +0000 |
|---|---|---|
| committer | Chong Yidong | 2007-06-13 00:03:39 +0000 |
| commit | 5a96c75174b75d53a55b416eddc1f56357be8a48 (patch) | |
| tree | 8db6ef624ac2c25becffdd8ba119327af590608d | |
| parent | d8869c65a3c39770c53e0b3294f64424932d241f (diff) | |
| download | emacs-5a96c75174b75d53a55b416eddc1f56357be8a48.tar.gz emacs-5a96c75174b75d53a55b416eddc1f56357be8a48.zip | |
(scheme-start-file): Use user-emacs-directory.
| -rw-r--r-- | lisp/cmuscheme.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cmuscheme.el b/lisp/cmuscheme.el index 12840441a6a..b89470b0045 100644 --- a/lisp/cmuscheme.el +++ b/lisp/cmuscheme.el | |||
| @@ -271,7 +271,7 @@ Search in the directories \"~\" and \"~/.emacs.d\", in this | |||
| 271 | order. Return nil if no start file found." | 271 | order. Return nil if no start file found." |
| 272 | (let* ((progname (file-name-nondirectory prog)) | 272 | (let* ((progname (file-name-nondirectory prog)) |
| 273 | (start-file (concat "~/.emacs_" progname)) | 273 | (start-file (concat "~/.emacs_" progname)) |
| 274 | (alt-start-file (concat "~/.emacs.d/init_" progname ".scm"))) | 274 | (alt-start-file (concat user-emacs-directory "init_" progname ".scm"))) |
| 275 | (if (file-exists-p start-file) | 275 | (if (file-exists-p start-file) |
| 276 | start-file | 276 | start-file |
| 277 | (and (file-exists-p alt-start-file) alt-start-file)))) | 277 | (and (file-exists-p alt-start-file) alt-start-file)))) |