[plt-scheme] Cyclic dependencies

From: Matthew Flatt (mflatt at cs.utah.edu)
Date: Wed Oct 22 21:30:33 EDT 2008

Now fixed in SVN. (This was reported a couple of times, and I kept
forgetting about it.)

Thanks,
Matthew

At Wed, 22 Oct 2008 17:46:59 -0700, Ben Goetter wrote:
> Compiling the following brief program "buga.ss" within DrScheme puts it 
> (released version 4.1.1, Win XP SP3) in a loop.  Eventually it aborts 
> compilation, having hit its 384 Mb heap limit.
> 
> ---file "buga.ss"---
> #lang scheme
> (require "bugb.ss")
> (provide foo)
> (define (foo) 'ziggy)
> (define (bar) (baz))
> ---end of file---
> ---file "bugb.ss"---
> #lang scheme
> (require (only-in "buga.ss" foo))
> (provide baz)
> (define (baz) (foo))
> ---end of file---
> _________________________________________________
>   For list-related administrative tasks:
>   http://list.cs.brown.edu/mailman/listinfo/plt-scheme


Posted on the users mailing list.