help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Question about let binding behavior


From: Stefan Monnier
Subject: Re: Question about let binding behavior
Date: Wed, 09 Oct 2024 19:39:02 -0400
User-agent: Gnus/5.13 (Gnus v5.13)

> or you can avoid the constant in the first place, for example with
> minimal change like this:
>
>    (let ((baz `((quux . 0) (quuz . 0))))

Hmm... I think this makes no difference: ` does not guarantee it returns
a different object each time.
And indeed, if you try:

    (macroexpand '`((quux . 0) (quuz . 0)))
=>
    '((quux . 0) (quuz . 0))


- Stefan




reply via email to

[Prev in Thread] Current Thread [Next in Thread]