Hi Artyom, On Thu, Oct 24, 2024 at 8:47 AM Artyom Bologov <m...@aartaka.me> wrote: > > Hello y'all, > > So I'm working on a project with a moderate amount of macros and some > tangled code paths. Which often means I have non-linear and > hard-to-figure-out inter-dependencies between pieces of code. One of > them bit me today: a macro that was defined after a procedure it was > used in, resulted in an "Unbound variable" error when the procedure was > called. The procedure was called long after the macro was finally > defined, so it shouldn't have been a problem.
I don't think this is a bug. In my experience, macro definitions must precede uses. - Dave