On Thu 12 Nov 2015 12:27, [email protected] (Taylan Ulrich "Bayırlı/Kammer") writes:
> First attempt: when I simply put
>
> (for-each (lambda (file)
> (display file)
> (newline)
> (primitive-load file))
> files)
>
> before the named let loop, I get the following output (interesting bit
> at the end, but all output pasted just in case):
You'll want to do the primitive-load in a
(save-module-excursion
(lambda () (primitive-load file)))
Andy
