all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Eli Zaretskii <eliz@gnu.org>
To: help-gnu-emacs@gnu.org
Subject: Re: .emacs (load {user-init-file, custom-file} causes duplicate load of both
Date: Thu, 11 Nov 2010 02:45:14 -0500	[thread overview]
Message-ID: <E1PGRqM-0005Mc-V2@fencepost.gnu.org> (raw)
In-Reply-To: <ibfg1j$6ji$1@dough.gmane.org> (message from Larry Evans on Wed,  10 Nov 2010 19:14:25 -0600)

> From: Larry Evans <cppljevans@suddenlink.net>
> Date: Wed, 10 Nov 2010 19:14:25 -0600
> 
> My ~/.emacs file contains (amoung other things):
> 
> ---{~/.emacs---
> (setq user-init-file
>       (expand-file-name "init.el"
> 			(expand-file-name ".emacs.d" "~")))
> (setq custom-file
>       (expand-file-name "custom.el"
> 			(expand-file-name ".xemacs" "~")))
> (load-file user-init-file)
> (load-file custom-file)
> ---}~/.emacs---
> 
> When started with this, the *messages* buffer contains:
> 
> ---{*messages---
> Loading /home/evansl/.emacs.d/init.el (source)...
> Loading /home/evansl/.recentf...done
> Cleaning up the recentf list...done (0 removed)
> Loading /home/evansl/.emacs.d/init.el (source)...done
> Loading /home/evansl/.xemacs/custom.el (source)...
> Loading desktop...done
> Loading /home/evansl/.xemacs/custom.el (source)...done
> ---}*messages---
> 
> Why are both user-init-file and custom-file both loaded twice?

Because you are overriding the values of variables that Emacs uses at
startup.  The startup procedure involves some non-trivial logic for
loading user-init-file and custom-file, and you are interfering with
that logic by setting their values in your ~/.emacs, which is read
half-way through the startup process.

Simply load the files by name, or use other variables.  Then Emacs
should load these files only once, as you want.



  parent reply	other threads:[~2010-11-11  7:45 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-11-11  1:14 .emacs (load {user-init-file, custom-file} causes duplicate load of both Larry Evans
2010-11-11  2:28 ` PJ Weisberg
2010-11-11  3:28   ` Larry Evans
2010-11-11  7:45 ` Eli Zaretskii [this message]
2010-11-11 11:22   ` Larry Evans
2010-11-11 12:09     ` Larry Evans
2010-11-11 14:32       ` Larry Evans
2010-11-11 18:26     ` Eli Zaretskii
2010-11-11 18:44       ` Larry Evans
2010-11-13 12:43         ` Howto avoid "Overwrite desktop file" question. (was " Larry Evans

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1PGRqM-0005Mc-V2@fencepost.gnu.org \
    --to=eliz@gnu.org \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.