Say, there is some function and if I do a describe-function
on it it says:
x is an interactive compiled Lisp function in x.el
Can I tell somehow if this loaded compiled code is byte compiled or natively compiled?
Say, there is some function and if I do a describe-function
on it it says:
x is an interactive compiled Lisp function in x.el
Can I tell somehow if this loaded compiled code is byte compiled or natively compiled?
In emacs-28.1, describe-function
gives this information:
switch-to-buffer is an interactive native compiled Lisp function in ‘window.el’.
Variable system-configuration-features
will contain NATIVE_COMP if your Emacs has been compiled with native compilation support.