all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Tadeus Prastowo <tadeus.prastowo@unitn.it>
To: YUE Daian <sheepduke@gmail.com>
Cc: help-gnu-emacs@gnu.org
Subject: Re: Function argument order of evaluation
Date: Mon, 11 Feb 2019 16:15:14 +0100	[thread overview]
Message-ID: <CAN-HRFYcjYN8Qf6B9oNxfSWqcgRkEp5Trf1YyVhShgpAHhV=dA@mail.gmail.com> (raw)
In-Reply-To: <87ftsuz87s.fsf@home.i-did-not-set--mail-host-address--so-tickle-me>

On Mon, Feb 11, 2019 at 4:01 PM YUE Daian <sheepduke@gmail.com> wrote:
>
> On 2019-02-11 10:53, Tadeus Prastowo <tadeus.prastowo@unitn.it> wrote:
> > Hello,
> >
> > In C/C++, the following code has an undefined behavior (UB):
> >
> > int my_var = 1;
> > my_function((my_var = 10), 2 * my_var);
> >
> > It is because their respective standards do not specify that the
> > assignment `(my_var = 10)' as the first argument must be evaluated
> > before the second argument `2 * my_var' is evaluated.  So,
> > `my_function' can see as its arguments either `10' and `20' or `10'
> > and `2'.

[...]

> Hi Tadeus,

Hi Danny,

> From the Emacs Lisp reference:
> ...then the forms in the function body are evaluated in order, and the
> value of the last body form becomes the value of the function call.
>
> You see, the forms in the function body are evaluated *in order*.
>
> I think it can be treated as a guarantee? ;-)

Thank you for responding.  But, my question is not about the
evaluation of the function body but about the invocation of the
function itself.

> Reference:
> https://ftp.gnu.org/old-gnu/Manuals/elisp-manual-20-2.5/html_chapter/elisp_9.html#SEC114
>
> Danny

--
Best regards,
Tadeus



  reply	other threads:[~2019-02-11 15:15 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-02-11  9:53 Function argument order of evaluation Tadeus Prastowo
2019-02-11 14:54 ` YUE Daian
2019-02-11 15:15   ` Tadeus Prastowo [this message]
2019-02-11 14:58 ` tomas
2019-02-11 15:17   ` Tadeus Prastowo

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='CAN-HRFYcjYN8Qf6B9oNxfSWqcgRkEp5Trf1YyVhShgpAHhV=dA@mail.gmail.com' \
    --to=tadeus.prastowo@unitn.it \
    --cc=help-gnu-emacs@gnu.org \
    --cc=sheepduke@gmail.com \
    /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.