# HG changeset patch # User Glenn Morris # Date 1207420761 0 # Node ID 65359653cb2d35b106fe5e8ea704a9a0da084ad5 # Parent 442e2ad714cdec0f25afd5e2a7bf94f864fd5be7 (Init File): Byte-compiling .emacs is bad. diff -r 442e2ad714cd -r 65359653cb2d doc/emacs/custom.texi --- a/doc/emacs/custom.texi Sat Apr 05 18:01:52 2008 +0000 +++ b/doc/emacs/custom.texi Sat Apr 05 18:39:21 2008 +0000 @@ -2085,10 +2085,14 @@ Emacs installation directory, typically @file{/usr/local/share/emacs/site-lisp}. - If you have a large amount of code in your @file{.emacs} file, you -should rename it to @file{~/.emacs.el}, and byte-compile it. @xref{Byte -Compilation,, Byte Compilation, elisp, the Emacs Lisp Reference Manual}, -for more information about compiling Emacs Lisp programs. + Byte-compiling your @file{.emacs} is not recommended (@pxref{Byte +Compilation,, Byte Compilation, elisp, the Emacs Lisp Reference +Manual}). It generally does not speed up startup very much, and often +leads to problems when you forget to recompile the file. A better +solution is to use the Emacs server to reduce the number of times you +have to start Emacs (@pxref{Emacs Server}). If your @file{.emacs} +defines many functions, consider moving them to a separate +(byte-compiled) file which you load in your @file{.emacs}. If you are going to write actual Emacs Lisp programs that go beyond minor customization, you should read the @cite{Emacs Lisp Reference Manual}.