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

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

bug#52147: Eager macro-expansion is not performed in `eval-and-compile'


From: Paul Pogonyshev
Subject: bug#52147: Eager macro-expansion is not performed in `eval-and-compile' functions
Date: Sun, 28 Nov 2021 22:53:52 +0100

That's what the subject says. I know that it works regardless, but the performance suffers, especially if the used macros are complex.

Paul

On Sun, 28 Nov 2021 at 11:30, Michael Heerdegen <michael_heerdegen@web.de> wrote:
Hello Paul,

> (eval-and-compile
>   (defun my-func-eac (what)
>     (my-macro what)))
>
> (defun my-func-normal (what)
>   (my-macro what))
>
> (print (symbol-function 'my-func-eac))
> (print (symbol-function 'my-func-normal))
>
> `eval-and-compile' is advertised in Elisp manual to make
> byte-compilation of certain macros without prior loading
> possible. Looks strange that at the same time it can worsen
> performance of non-byte-compiled code.

Is the issue you want to draw attention to that an interpreted
`eval-and-compile' form doesn't macroexpand its body?

Michael.

reply via email to

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