[Xotcl] Filter broken on Win32 ver 0.91 & 0.93?
Sheik Yussuff
sheik@carib-link.net
Tue, 18 Dec 2001 18:15:24 -0400
It seems that filter is broken on the Win32 platform(ver 0.91
and ver 0.93).
The following code runs ok on Linux(XOTcl ver 0.91) but not
on the Win32 platforms(>= 0.91). I don't think my installation
is at fault.(library installed ok, etc) but I could be wrong.
I haven't tried ver 0.93 on Linux as I am waiting on the RPM.
Code:
Class A
A instproc ma args {
puts "method ma of A"
}
A instproc f args {
puts "filter f of A"
next
}
A instfilter f
A a
a ma
The Result on Win32:
method ma of A
Regards,
--sheik