2008/11/12 Linas Vepstas <[EMAIL PROTECTED]>:

> Yes, of course, the problem remains.

Explanation:

Thread 1 is the first thread that does any Guile stuff, so it loads
boot-9.scm, which means that it ends up in the (guile-user) module.

Thread 2 hasn't done any (set-current-module ...), so it stays at the
default, which is (guile).

Solution: add (define-module (guile-user)) to the code that you
execute in thread 2.

Regards,
     Neil


Reply via email to