aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2005-10-30 03:56:16 +0000
committerChong Yidong2005-10-30 03:56:16 +0000
commit27a19a634725b8ddda374bfd7fc5f9a411a59550 (patch)
tree46f25dd7da7fcda5ceffb299071115e5a59d9b4e
parentf0cdd9e4586da43d45122102c4a89ad9efe24f71 (diff)
downloademacs-27a19a634725b8ddda374bfd7fc5f9a411a59550.tar.gz
emacs-27a19a634725b8ddda374bfd7fc5f9a411a59550.zip
Document ~/.emacs.d/init.el
-rw-r--r--man/ChangeLog6
-rw-r--r--man/anti.texi7
-rw-r--r--man/custom.texi16
3 files changed, 19 insertions, 10 deletions
diff --git a/man/ChangeLog b/man/ChangeLog
index a89484c30f5..286db35285d 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,9 @@
12005-10-29 Chong Yidong <cyd@stupidchicken.com>
2
3 * custom.texi (Init File): Document ~/.emacs.d/init.el.
4
5 * anti.texi (Antinews): Likewise.
6
12005-10-29 Sascha Wilde <wilde@sha-bang.de> 72005-10-29 Sascha Wilde <wilde@sha-bang.de>
2 8
3 * pgg.texi (How to use): Update the example to add autoload of 9 * pgg.texi (How to use): Update the example to add autoload of
diff --git a/man/anti.texi b/man/anti.texi
index ecff1f06a8c..0095f0d6872 100644
--- a/man/anti.texi
+++ b/man/anti.texi
@@ -63,9 +63,10 @@ the @samp{-f} option will not read arguments for interactive
63functions. 63functions.
64 64
65@item 65@item
66Emacs now looks for @file{.emacs} and @file{.emacs_SHELL} in one 66We have standardized on one location for the user init file: the file
67standard location---your home directory. Don't put these files in 67named @file{.emacs} in your home directory. Emacs will not look for
68@file{~/.emacs.d}; they won't be found. 68the init file in @file{~/.emacs.d/init.el}. Similarly, don't try
69putting @file{.emacs_SHELL} in @file{~/.emacs.d}; Emacs won't find it.
69 70
70@item 71@item
71Emacs will not read @file{~/.abbrev_defs} automatically. If you want 72Emacs will not read @file{~/.abbrev_defs} automatically. If you want
diff --git a/man/custom.texi b/man/custom.texi
index aad67d21133..9a76f0cc111 100644
--- a/man/custom.texi
+++ b/man/custom.texi
@@ -1983,13 +1983,15 @@ Reference Manual}.
1983@cindex startup (init file) 1983@cindex startup (init file)
1984 1984
1985 When Emacs is started, it normally loads a Lisp program from the 1985 When Emacs is started, it normally loads a Lisp program from the
1986file @file{.emacs} or @file{.emacs.el} in your home directory. (You 1986file @file{.emacs} or @file{.emacs.el} in your home directory. We
1987can also put it in a subdirectory @file{~/.emacs.d} and Emacs will 1987call this file your @dfn{init file} because it specifies how to
1988still find it.) We call this file your @dfn{init file} because it 1988initialize Emacs for you. You can use the command line switch
1989specifies how to initialize Emacs for you. You can use the command 1989@samp{-q} to prevent loading your init file, and @samp{-u} (or
1990line switch @samp{-q} to prevent loading your init file, and @samp{-u} 1990@samp{--user}) to specify a different user's init file (@pxref{Initial
1991(or @samp{--user}) to specify a different user's init file 1991Options}).
1992(@pxref{Initial Options}). 1992
1993 You can also use @file{~/.emacs.d/init.el} as the init file. Emacs
1994tries this if it cannot find @file{~/.emacs} or @file{~/.emacs.el}.
1993 1995
1994@cindex @file{default.el}, the default init file 1996@cindex @file{default.el}, the default init file
1995 There can also be a @dfn{default init file}, which is the library 1997 There can also be a @dfn{default init file}, which is the library