Re: [Chicken-users] Egg svn request: caketext

2008-03-13 Thread Robin Lee Powell
On Thu, Mar 13, 2008 at 01:17:08AM +0100, felix winkelmann wrote: > On Mon, Mar 10, 2008 at 9:44 AM, Robin Lee Powell > <[EMAIL PROTECTED]> wrote: > > > > caketext is a work-alike port of the Perl module > > Locale::Maketext (see > > http://search.cpan.org/dist/Locale-Maketext/lib/Locale/Maketex

Re: [Chicken-users] Re: Chicken release policy

2008-03-13 Thread Peter Bex
o that? If you download chicken-3.0.1.tar.gz you get the release, and if you download chicken-3.0.1-20080313.tar.gz you get the chicken release snapshot of 3.0.1 made on March 13th, 2008. That way it's not necessary to update the version just because a release was made of one particula

Re: [Chicken-users] Hang problem with the http egg.

2008-03-13 Thread Hans Bulfone
hi, On Thu, Mar 13, 2008 at 10:54:28AM +0900, Alex Shinn wrote: > > "Hans" == Hans Bulfone <[EMAIL PROTECTED]> writes: > > Hans> that said, i think i really am a quite humble > Hans> person :) > > By saying that your humble status has been revoked! :P well, good. it's not helping a

Re: [Chicken-users] installing local version derived from offical eggs

2008-03-13 Thread Ivan Raikov
Hello, Sven, Which version of Chicken is this? Using development snapshot 3.0.7, the command `chicken-setup -local $HOME/tmp/chicken-eggs qdbm` works fine (with the qdbm files in $HOME/tmp/chicken-eggs/qdbm). Could you please try 3.0.7 and let us know if that works for you? Thanks, -Ivan

Re: [Chicken-users] installing local version derived from offical eggs

2008-03-13 Thread Sven . Hartrumpf
Hello Ivan. Thu, 13 Mar 2008 20:50:01 +0900, raikov wrote: >Which version of Chicken is this? This was a little older version (3.0.6 ?). > Using development snapshot 3.0.7, > the command `chicken-setup -local $HOME/tmp/chicken-eggs qdbm` > works fine (with the qdbm files in $HOME/tmp/chicken

Re: [Chicken-users] Re: Chicken release policy

2008-03-13 Thread John Cowan
Peter Bex scripsit: > If you download chicken-3.0.1.tar.gz you get the release, and if you > download chicken-3.0.1-20080313.tar.gz you get the chicken release snapshot > of 3.0.1 made on March 13th, 2008. That way it's not necessary to update > the version just because a releas

[Chicken-users] Bug report: low-level macros vs. variables in csi

2008-03-13 Thread John Cowan
(This is a bug report; it should go to Trac, but Trac is still down.) The names of low-level macros are effectively in a different namespace from ordinary Scheme identifiers. Here are two examples: CHICKEN (c)2008 The Chicken Team (c)2000-2007 Felix L. Winkelmann Version 3.0.6 - linux-unix-gnu-x

Re: [Chicken-users] Bug report: low-level macros vs. variables in csi

2008-03-13 Thread Graham Fawcett
On Thu, Mar 13, 2008 at 12:05 PM, John Cowan <[EMAIL PROTECTED]> wrote: > Proposed course of action: have the interpreter check whether an > identifier is the name of a macro and signal an error rather than using > any existing definition. You mean, upon every expression evaluation, or just whe

Re: [Chicken-users] Hang problem with the http egg.

2008-03-13 Thread Peter Bex
On Wed, Mar 12, 2008 at 10:20:43PM -0700, Robin Lee Powell wrote: > Bug submitted with Selenium. Here's the patch for the http egg > problem. Two different styles of optionals; feel free to pick only > one, whoever applies this. IMHO this patch should not be applied. It makes the procedure sign

Re: [Chicken-users] Bug report: low-level macros vs. variables in csi

2008-03-13 Thread John Cowan
Graham Fawcett scripsit: > On Thu, Mar 13, 2008 at 12:05 PM, John Cowan <[EMAIL PROTECTED]> wrote: > > Proposed course of action: have the interpreter check whether an > > identifier is the name of a macro and signal an error rather than using > > any existing definition. > > You mean, upon eve

Re: [Chicken-users] Cairo binding

2008-03-13 Thread Luke McCarthy
On Wednesday 12 March 2008 23:12:28 you wrote: > I recommend manual destruction. The garbage collector is unable to infer > whether C variables still refer to the finalized context. Well cairo_destroy() actually decrements the reference count, so any C functions which keep a reference should call

Re: [Chicken-users] Egg svn request: caketext

2008-03-13 Thread Robin Lee Powell
On Thu, Mar 13, 2008 at 12:10:35AM -0700, Robin Lee Powell wrote: > On Thu, Mar 13, 2008 at 01:17:08AM +0100, felix winkelmann wrote: > > On Mon, Mar 10, 2008 at 9:44 AM, Robin Lee Powell > > <[EMAIL PROTECTED]> wrote: > > > > > > caketext is a work-alike port of the Perl module > > > Locale::Mak

Re: [Chicken-users] Hang problem with the http egg.

2008-03-13 Thread Robin Lee Powell
On Thu, Mar 13, 2008 at 07:55:00PM +0100, Peter Bex wrote: > In case you want to send more complicated requests or want more > control over the way the request is made, just send in a > http:request object: > > (http:GET (http:make-request > 'GET "http://localhost/index.html"; >

Re: [Chicken-users] ditching syntax-case modules for the utf8 egg

2008-03-13 Thread Robin Lee Powell
On Tue, Mar 11, 2008 at 05:05:27PM +0900, Alex Shinn wrote: > > "Robin" == Robin Lee Powell <[EMAIL PROTECTED]> writes: > Robin> On Thu, Jun 28, 2007 at 12:25:54PM +0900, Alex Shinn wrote: > > >> I'm considering changing the utf8 egg to no longer > >> use syntax-case modules, so th

[chicken-users] something fishy with use of (every) in (match) expressions

2008-03-13 Thread Leonardo Valeri Manera
Try this in a fresh csi session (I'm running trunk): #;1> (use match) #;2> (match '("a" "b" "c") ((and args (or #f ((? atom? _) ...))) (print args))) What I get is: Error: unbound variable: every Call history: (##sys#match-error g1) (lamb

Re: [chicken-users] something fishy with use of (every) in (match) expressions

2008-03-13 Thread Kon Lovett
On Mar 13, 2008, at 2:58 PM, Leonardo Valeri Manera wrote: Try this in a fresh csi session (I'm running trunk): #;1> (use match) #;2> (match '("a" "b" "c") ((and args (or #f ((? atom? _) ...))) (print args))) What I get is: Error: unbound variable: every Call history: