diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2007-06-13 00:03:39 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2007-06-13 00:03:39 +0000 |
commit | 5a96c75174b75d53a55b416eddc1f56357be8a48 (patch) | |
tree | 8db6ef624ac2c25becffdd8ba119327af590608d /lisp/cmuscheme.el | |
parent | d8869c65a3c39770c53e0b3294f64424932d241f (diff) | |
download | emacs-5a96c75174b75d53a55b416eddc1f56357be8a48.tar.gz |
(scheme-start-file): Use user-emacs-directory.
Diffstat (limited to 'lisp/cmuscheme.el')
-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 order. Return nil if no start file found." (let* ((progname (file-name-nondirectory prog)) (start-file (concat "~/.emacs_" progname)) - (alt-start-file (concat "~/.emacs.d/init_" progname ".scm"))) + (alt-start-file (concat user-emacs-directory "init_" progname ".scm"))) (if (file-exists-p start-file) start-file (and (file-exists-p alt-start-file) alt-start-file)))) |