[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Emacs-diffs] master 551594e: Add indent spec to easy-mmode macros
From: |
Mark Oteiza |
Subject: |
Re: [Emacs-diffs] master 551594e: Add indent spec to easy-mmode macros |
Date: |
Thu, 28 Sep 2017 20:46:54 -0400 |
User-agent: |
NeoMutt/20170912-48-0df7d3-dirty |
On 28/09/17 at 08:38am, Stefan Monnier wrote:
> > Ideally these macros should expand to the proper code instead of
> > relegating all the work to a function call.
>
> FWIW, I tend to
> disagree: it's usually preferable to keep the macro part to a minimum
> (handling the syntax), and to keep as much as possible in functions.
I see, thanks. I tend towards macros that expand to efficient code and
eliminate runtime dependencies; however, like all things it's a trade
off, be it code size, macroexpansion speed, etc.