> the porting of my sketch-program to stk seems to be very hard work.
> Unfortunately i defined
>
> (define 'ajfl (lambda ....))
>
> no warning at all, only strange behaviour. The quoting was broken.
> Ok after some days i found it... .
> now i have the problem, that
There is no warning since it is valid scheme. It is considered as
(define (quote ajfl)
(lambda .....))
I.e. you redefine quote as a function of one parameter (ajfl) and this
function
returns a lambda form.
>
> (.acanvas 'find 'closest x y)
>
> always returns list like
>
> (()) or
> (() () ())
> ?
> There are items in the canvas!!
>
This is bug. It is corrected in the 2.1.4 (which will be available tomorrow or
wednesday).
-- Erick
Received on Mon Nov 07 1994 - 11:50:12 CET
This archive was generated by hypermail 2.3.0
: Mon Jul 21 2014 - 19:38:59 CEST