This is the mail archive of the guile@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]

Re: Jim's wish list: gd library interface


Todd Larason <jtl@molehill.org> writes:

> On 981024, Russell McManus wrote:
> > I also want to port functional postscript (cool system), but that's
> > after sunet on my list.  I hope someone beats me to it.
> 
> I've started looking at that, but not only is my time limited, so is my
> skill/knowledge (at least one of those two, hopefully just the one that's
> easier to fix).

Marius ported fps a while ago:

/ftp.red-bean.com:/pub/guile/contrib/hacks/guile-fps-961222.tar.gz

> Guile's (ice-9 syncase) has call-with-values and values procedures defined
> that look like they might do the right thing; what I don't understand is
> how to use them.  They're (define)d, not (define-public)d, so as far as
> I understand, they can only be used from the syncase module; they're not
> used there though, so I expect I'm missing something in the guile
> module system.  Anyone have some pointers?

psyntax.pp, which uses call-with-values, is loaded into the syncase
module at line 166.

/mdj