I wrote: > This works when I run Guile with --no-auto-compile, but with > compilation enabled, I get: > ;;; Unbound variable: my-load > How can I make the binding visible to the compiler?
In case anyone else runs into this: I solved it by wrapping the definition of my-load in (eval-when (expand eval load) ...).