1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-11 16:08:13 +00:00

Don't need to load custom-file from your .emacs any more.

This commit is contained in:
Stefan Monnier 2002-08-14 21:50:08 +00:00
parent 694210c486
commit e32a595961

View File

@ -526,12 +526,11 @@ operation.
@vindex custom-file
The customization buffer normally saves customizations in
@file{~/.emacs}. If you wish, you can save customizations in another
file instead. To make this work, your @file{~/.emacs} should load
that file and should also set @code{custom-file} to the name of that
file. For example:
file instead. To make this work, your @file{~/.emacs} should set
@code{custom-file} to the name of that file. Emacs will then load
the file right after your @file{.emacs}. For example:
@example
(load "~/.emacs-custom")
(setq custom-file "~/.emacs-custom")
@end example