Remix.run Logo
rightbyte 3 days ago

How would this work?

    (defmacro hi-macro ()
      (eval-when-compile
        (message "hi you")))

    (hi-mac
I get no printout when doing C-M-i with the cursor after "mac".

Edit: OK. As per the mailing list. I guess it is a feature then.

    (let ((fooo (eval-when-compile (progn (message "hi you")))))
      foo ;; <---- C-M-i here
      )