This is the mail archive of the guile@sourceware.cygnus.com mailing list for the Guile project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

bug report



(define (bug?)
  (let loop ((x 0 2))
    (if (= x 10)
	#t
	(begin
	  (format #t "~A~&" x)
	  (loop (1+ x))))))
(bug?)


Yields this result in guile-1.3.4 on Solaris:

Exception during displaying of error: signal
ABORT: (misc-error)

-russ


--
"I, too, prefer to write general code first and get the shape and
functionality right, and then to tune as needed where a problem is
discovered."
             -- Kent Pitman on comp.lang.lisp


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]