From: Heime <heimeborgia@protonmail.com>
To: Emanuel Berg <incal@dataswamp.org>
Cc: help-gnu-emacs@gnu.org
Subject: Re: macro that uses local variables
Date: Wed, 09 Aug 2023 03:09:48 +0000 [thread overview]
Message-ID: <2kcpuxgFwdbvgqqotTGBbHttysXpd0MJePuWtRTrxgBSO8PDqktV4MC69COMYE_VgmtspvJoUPAFks7PmHC13rPKjh425adnexzHHReGgWc=@protonmail.com> (raw)
In-Reply-To: <871qgenx1h.fsf@dataswamp.org>
Sent with Proton Mail secure email.
------- Original Message -------
On Tuesday, August 8th, 2023 at 1:27 PM, Emanuel Berg <incal@dataswamp.org> wrote:
> Heime wrote:
>
> > I am using the rocket equation in this macro [...]
> >
> > (defmacro booster-velocity-change
> > (specific-impulse standard-gravity initial-mass final-mass)
> > "Compute change of velocity using rocket equation."
> > `(* (* ,specific-impulse ,standard-gravity)
> > (log (mass-ratio ,initial-mass ,final-mass))) )
>
>
> There is no reason to write a macro for this
> simple computation.
>
> > I want to change it such that the arguments are set as local
> > variables
>
>
> Lexical scope, defun, arguments, if need be `let'. It is
> super easy.
>
> If you start thinking "how do I solve my problem?" instead of
> "how do I do <something> in Emacs", everything will be much
> easier for you ...
In the context of a macro, the 'let' command should happen outside tho macro
quote. With the quote expression in the body. Am I right ?
(defmacro booster-velocity-change
(specific-impulse initial-mass final-mass)
"Compute change of velocity using rocket equation."
(let ( (gravity 9.81) )
`(* (* ,specific-impulse ,gravity)
(log (mass-ratio ,initial-mass ,final-mass))) ))
> --
> underground experts united
> https://dataswamp.org/~incal
next prev parent reply other threads:[~2023-08-09 3:09 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-08 0:32 macro that uses local variables Heime
2023-08-08 1:27 ` Emanuel Berg
2023-08-09 3:09 ` Heime [this message]
2023-08-09 21:02 ` Emanuel Berg
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
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='2kcpuxgFwdbvgqqotTGBbHttysXpd0MJePuWtRTrxgBSO8PDqktV4MC69COMYE_VgmtspvJoUPAFks7PmHC13rPKjh425adnexzHHReGgWc=@protonmail.com' \
--to=heimeborgia@protonmail.com \
--cc=help-gnu-emacs@gnu.org \
--cc=incal@dataswamp.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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).