all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Eli Zaretskii <eliz@gnu.org>
To: Stephen Berman <stephen.berman@gmx.net>
Cc: emacs-devel@gnu.org
Subject: Re: eval, load and -l
Date: Tue, 05 Jul 2016 17:52:23 +0300	[thread overview]
Message-ID: <83wpl0nnmg.fsf@gnu.org> (raw)
In-Reply-To: <871t381fca.fsf@gmx.net> (message from Stephen Berman on Tue, 05 Jul 2016 13:42:13 +0200)

> From: Stephen Berman <stephen.berman@gmx.net>
> Date: Tue, 05 Jul 2016 13:42:13 +0200
> 
> If I understand the Emacs and Lisp reference manuals correctly, I expect
> that, when I have a file foo.el containing Lisp code, the following
> procedures should produce the same results:
> 
> 1. emacs -Q
>    C-x C-f foo.el RET
>    M-x eval-buffer RET
> 
> 2. emacs -Q
>    M-x load-file RET foo.el RET
> 
> 3. emacs -Q -l foo.el

No, item 3 will always be different from the other two.

> But I have code where the result of doing 1 or 2 differs from the result
> of doing 3.

As expected.  In general, everything done by Emacs during startup
might yield different results, because the processing of the command
line and the init files is intertwined with starting a session and
initializing the various sub-systems.  The root cause of all that
complexity is that init files include customizations, some of which
need to be applied before Emacs creates some objects, some after, and
some both before and after.

That is why, for example, evaluating your (or someone else's) .emacs
in a running session doesn't produce identical results as the same
file processed during startup.

> http://lists.gnu.org/archive/html/emacs-devel/2016-07/msg00154.html
> 
> As I noted there, when I evaluate the code in a running Emacs session,
> i.e. as in 1 or 2, I see frame-widening; but when I load the code by
> doing 3, there is no frame-widening.  Is this difference expected

Yes, at least in principle.

> and if so could someone point me to the relevant documentation or
> part of the code that makes the difference?

The order of things done during startup is documented in "Startup
Summary" in the ELisp manual.  The --load command-line argument is
processed in item 21, and then item 26 we recompute frame and window
parameters and other related settings.



  parent reply	other threads:[~2016-07-05 14:52 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-05 11:42 eval, load and -l Stephen Berman
2016-07-05 14:00 ` Clément Pit--Claudel
2016-07-05 14:52 ` Eli Zaretskii [this message]
2016-07-05 15:37   ` Stephen Berman
2016-07-05 16:40     ` Eli Zaretskii

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=83wpl0nnmg.fsf@gnu.org \
    --to=eliz@gnu.org \
    --cc=emacs-devel@gnu.org \
    --cc=stephen.berman@gmx.net \
    /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.