I am currently using Lisp in a Box which comes pre-configured to not load the ".emacs" configuration file. I would like to change the shortcut so that Emacs does load this file by default but I cannot find where this piece of code is.

Can someone please help me locate this and if possible tell me which bits of code to remove/edit to allow this file to be loaded? I am using Lispbox on OS X if that makes any difference.

As far as I know I am looking for one of the following pieces of code for not loading an init file: -q --no-init-file --no-site-file

Thanks in advance.

link|improve this question

0% accept rate
FWIW, setting up Emacs, SLIME and Common Lisp on OS X isn't all that hard, and you might find it a bit easier to manage. – spacemanaki Apr 30 '11 at 16:39
feedback

3 Answers

Normally the init files loaded are either ~/.emacs.d/init.el or if that is not present ~/.emacs so, maybe you can get an indication of what is going on in the first file?

Also, the buffer *Messages* will sometimes tell you a bit about what is going on.

link|improve this answer
1  
Thanks, Finally had a breakthrough and after a ton of searching I managed to find what I was looking for. For anyone else looking to do the same the file that you need to edit is: "/Emacs/Contents/MacOS/lispbox.sh" Then remove "--no-init-file --no-site-file " from the last line of code to allow .emacs to load on starting Lispbox. :) – user730925 Apr 30 '11 at 6:30
feedback

These kinds of problems (binary tries to load some unknown configuration file) you can analyze using the tool 'strace'.

link|improve this answer
feedback

It's inside Lispbox.sh (Linux) or Lispbox.bat (Windows).

%EMACS% --no-init-file --no-site-file --eval=%TO_EVAL%
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.