Re: On quitting and exiting

2013-03-14 Thread Andy Wingo
On Thu 14 Mar 2013 05:40, Mike Gran writes: > In boot-9, a function `quit' is defined.  It appears in the manual, > but, in boot-9 it can take an argument.  In the manual it never > takes an argument. > > In boot-9, `exit' is aliased to quit.  In the manual `exit' is > > undocumented; however, i

Re: setvbuf can't make it unbuffered

2013-03-14 Thread Andy Wingo
Hi :) On Thu 14 Mar 2013 04:38, Mike Gran writes: >> From: Andy Wingo > >>I made some notes there. >> > > I noticed in your comments to Nala G that you recommend using > `print-exception'.  Is that intended to be public API?  It doesn't > appear in the manual. It is intended to be public, yes.

[PATCH] Fix get-bytevector-all read redundant eof

2013-03-14 Thread Nala Ginrut
Attached the patch to fix get-bytevector-all. You may check it like this: (get-bytevector-all (current-input-port)) And try to input then type ctrl+d, the current implementation needs you type ctrl+d twice. Regards. >From 1e22ce9468a09a186ce77552bae310d2e4a6178d Mon Sep 17 00:00:00 2001 From: Nal

Re: setvbuf can't make it unbuffered

2013-03-14 Thread Nala Ginrut
On Thu, 2013-03-14 at 09:58 +0100, Andy Wingo wrote: > Hi :) > > On Thu 14 Mar 2013 04:38, Mike Gran writes: > > >> From: Andy Wingo > > > >>I made some notes there. > >> > > > > I noticed in your comments to Nala G that you recommend using > > `print-exception'. Is that intended to be public

Help required with exporting and using GOOP generics

2013-03-14 Thread Brent Pinkney
Hello, I am having serious problems exporting generics from subclasses of and then using them in other modules. I have trawled the logs and tried every combination I can thing of. I have tried creating a common base class for all my classes and defining the methods there, I have tried expor

Re: Help required with exporting and using GOOP generics

2013-03-14 Thread David Pirotte
Hello Brent, Please send the code, i'll look at it asap. I am precisely in a discussion with developers about goops and the way the guile module system interferes with it, since i also believe that there is a serious problem indeed: and not 'just' because there is no way to ask goops 'stuff' to

Re: Help required with exporting and using GOOP generics

2013-03-14 Thread Mark H Weaver
Hi Brent, Brent Pinkney writes: > I am having serious problems exporting generics from subclasses of > and then using them in other modules. Apologies for the confusion. You're not the only one who's been having trouble with this. There *is* a proper solution, which I will describe below, but

Re: Help required with exporting and using GOOP generics

2013-03-14 Thread dsmich
Mark H Weaver wrote: > The proper solution is as follows: > > * Every generic function must be defined (using 'define-generic') and > exported from one (and only one) module. > > * Every module that uses a generic function, or adds a method to it (and > that includes slot accessors), m