On Wed, Jan 26, 2005 at 03:39:40PM -0700, John Harrigan wrote:
> kpress("KP_Begin", make_mplex_sub_fn(WRegion.request_geom,{w=80})),
This is a big awkward to do in Ion2:
kpress("KP_Begin", make_mplex_sub_fn(function(_sub)
_sub:request_geom{w=80}
end)),
You might want to consider switching to Ion3, this is much easier there:
kpress("KP_Begin", "_sub:request_geom{w=89}"),
(The construct
kpress("KP_Begin", function(_, _sub) _sub:request_geom{w=80} end)
also won't work in Ion2, because the C-side doesn't necessarily return
proper _sub unlike in Ion3.)
--
Tuomo