This is the mail archive of the kawa@sources.redhat.com mailing list for the Kawa project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: UnboundSymbol


The problem is that the string is *not* evaluated in "immediate"
(or interactive) mode, but each string is treated as a separate file.
I.e. the imported declaration are only visible within each string:

The following works:
  scm.eval( "(require 'srfi-1) filter");
Or if you prefer:
scm.eval( "(begin (require 'srfi-1) filter)");

This should be fixed, but I need to think about how to do it.
--
	--Per Bothner
per@bothner.com   http://www.bothner.com/per/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]