Version: guile--1.6.4
Guile segfaults when given the following code:
(define a (make-uniform-array 1/3 3 3))
(uniform-array-set1! a 5.0 (cons 0 0))
This was during my attempt to set the (0, 0) entry of the two-dimensional
array a to 5.0.
As it happens, the syntax is incorrect. The second line should
have been:
(uniform-array-set1! a 5.0 '(0 0))
Nevertheless, guile shouldn't have segfaulted on wrong input.
Just wanted to let you know.
--
Rouben Rostamian
_______________________________________________
Bug-guile mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-guile