Date: 2007-04-01 08:59
Sender: Steve Purcell
You should not normally byte-compile your .emacs file. Normal
practice is to byte-compile all other .el files, but leave .emacs
uncompiled.
The problem here is that the emacs-rails directory is added to
your path when your .emacs is *loaded*, not when it is *compiled*.
If you really want to compile your .emacs file, which I would
not advise, then select the (setq load-path ...) line and choose
"Evaluate region" from the "Emacs Lisp" menu
before you try to compile .emacs. |