diff options
| author | Chong Yidong | 2005-10-30 03:56:16 +0000 |
|---|---|---|
| committer | Chong Yidong | 2005-10-30 03:56:16 +0000 |
| commit | 27a19a634725b8ddda374bfd7fc5f9a411a59550 (patch) | |
| tree | 46f25dd7da7fcda5ceffb299071115e5a59d9b4e | |
| parent | f0cdd9e4586da43d45122102c4a89ad9efe24f71 (diff) | |
| download | emacs-27a19a634725b8ddda374bfd7fc5f9a411a59550.tar.gz emacs-27a19a634725b8ddda374bfd7fc5f9a411a59550.zip | |
Document ~/.emacs.d/init.el
| -rw-r--r-- | man/ChangeLog | 6 | ||||
| -rw-r--r-- | man/anti.texi | 7 | ||||
| -rw-r--r-- | man/custom.texi | 16 |
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 @@ | |||
| 1 | 2005-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 | |||
| 1 | 2005-10-29 Sascha Wilde <wilde@sha-bang.de> | 7 | 2005-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 | |||
| 63 | functions. | 63 | functions. |
| 64 | 64 | ||
| 65 | @item | 65 | @item |
| 66 | Emacs now looks for @file{.emacs} and @file{.emacs_SHELL} in one | 66 | We have standardized on one location for the user init file: the file |
| 67 | standard location---your home directory. Don't put these files in | 67 | named @file{.emacs} in your home directory. Emacs will not look for |
| 68 | @file{~/.emacs.d}; they won't be found. | 68 | the init file in @file{~/.emacs.d/init.el}. Similarly, don't try |
| 69 | putting @file{.emacs_SHELL} in @file{~/.emacs.d}; Emacs won't find it. | ||
| 69 | 70 | ||
| 70 | @item | 71 | @item |
| 71 | Emacs will not read @file{~/.abbrev_defs} automatically. If you want | 72 | Emacs 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 |
| 1986 | file @file{.emacs} or @file{.emacs.el} in your home directory. (You | 1986 | file @file{.emacs} or @file{.emacs.el} in your home directory. We |
| 1987 | can also put it in a subdirectory @file{~/.emacs.d} and Emacs will | 1987 | call this file your @dfn{init file} because it specifies how to |
| 1988 | still find it.) We call this file your @dfn{init file} because it | 1988 | initialize Emacs for you. You can use the command line switch |
| 1989 | specifies how to initialize Emacs for you. You can use the command | 1989 | @samp{-q} to prevent loading your init file, and @samp{-u} (or |
| 1990 | line 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 | 1991 | Options}). |
| 1992 | (@pxref{Initial Options}). | 1992 | |
| 1993 | You can also use @file{~/.emacs.d/init.el} as the init file. Emacs | ||
| 1994 | tries 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 |