projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d8869c6
)
(scheme-start-file): Use user-emacs-directory.
author
Chong Yidong
<cyd@stupidchicken.com>
Wed, 13 Jun 2007 00:03:39 +0000
(
00:03
+0000)
committer
Chong Yidong
<cyd@stupidchicken.com>
Wed, 13 Jun 2007 00:03:39 +0000
(
00:03
+0000)
lisp/cmuscheme.el
patch
|
blob
|
history
diff --git
a/lisp/cmuscheme.el
b/lisp/cmuscheme.el
index 12840441a6a29e936691caf327a78bd80ae313ff..b89470b00457c158d296f90b430fa19235d0a76f 100644
(file)
--- 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))))