This is the mail archive of the kawa@sourceware.org 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]

<srfi-hash-table> unbound in kawa-1.9.90


Hello!

I've just started playing with kawa-1.9.90 and noticed one major
difference compared to the previous release (1.9.1).  The symbol
<srfi-hash-table> is not bound when using the `srfi-69' module.

$ java -jar kawa-1.9.1.jar 
#|kawa:1|# (require 'srfi-69)
#|kawa:2|# <srfi-hash-table>
ClassType gnu.kawa.slib.srfi$Mnhash$Mntable

But:

$ java -jar kawa-1.9.90.jar 
#|kawa:1|# (require 'srfi-69)
#|kawa:2|# <srfi-hash-table>
unbound location <srfi-hash-table>
	at gnu.mapping.Location.get(Location.java:67)
	at atInteractiveLevel$2.run(stdin)
	at gnu.expr.ModuleExp.evalModule2(ModuleExp.java:298)
	at gnu.expr.ModuleExp.evalModule(ModuleExp.java:176)
	at kawa.Shell.run(Shell.java:273)
	at kawa.Shell.run(Shell.java:184)
	at kawa.Shell.run(Shell.java:165)
	at kawa.repl.main(repl.java:887)


Is this intentional?  And if it is, what is the new name of
<srfi-hash-table>?  How one is supposed to use the hashtable type with
`instance?'?


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