Have been playing with 3.99.2 and it is giving me some problems.
So far I have:
1. set-cdr! misbehaves:
thomas:~> stk-3.1.1
Welcome to the STk interpreter version 3.1.1 [Linux-2.X-ix86]
Copyright © 1993-1996 Erick Gallesio - I3S - CNRS / ESSI <eg_at_unice.fr>
STk> (let ((l '((a b) (c d)))
)
(set-cdr! (car l) 'z)
l)
((a . z) (c d))
thomas:~/doc/mammo/reports/monitors> stk-3.99.2
Welcome to the STk interpreter version 3.99.2 [Linux-2.X-ix86]
Copyright © 1993-1998 Erick Gallesio - I3S - CNRS / ESSI <eg_at_unice.fr>
STk> (let ((l '((a b) (c d)))
)
(set-cdr! (car l) 'z)
l)
((a ((a . z) (c d))
2. place-grip disappears:
thomas:~/working/mavis> stk-3.99.2
Welcome to the STk interpreter version 3.99.2 [Linux-2.X-ix86]
Copyright © 1993-1998 Erick Gallesio - I3S - CNRS / ESSI <eg_at_unice.fr>
STk> (require "Tk-classes")
"Tk-classes"
STk> (define p (make <VPaned> :width 200 :height 200))
p
STk> (pack p)
()
STk> (place-grip p)
*** Error:
unbound variable: place-grip
Compiled with gcc 2.7.2. Any suggestions much appreciated,
--
Mr Andrew Dorrell *
Faculty of Engineering /---\ Whoo? *
University of Technology, Sydney (o o) / *
AUSTRALIA ( : ) .
^ ^
*
Received on Thu Jul 02 1998 - 03:19:01 CEST