Re: [Chicken-users] Keyword parameters bug?

2009-04-15 Thread felix winkelmann
On Tue, Apr 14, 2009 at 6:15 PM, Alonso Andres alo@gmail.com wrote: It seems there is a bug in Chicken (I'm using version 4.0) when using procedures with keywords parameters. Example: --[$ csi] #;1 (define (test-proc #!key some-arg string) (display some-arg) (newline) (display

[Chicken-users] egg rss feed

2009-04-15 Thread felix winkelmann
Hi! An RSS feed (does nearly validate!) for chicken 4 eggs has been set up here: http://chicken.wiki.br/chicken-projects/egg-rss-feed-4.xml It is automatically generated every couple of hours. cheers, felix ___ Chicken-users mailing list

Re: [Chicken-users] Spiffy is crashing

2009-04-15 Thread Peter Bex
On Wed, Apr 15, 2009 at 11:10:52AM +0200, Petter Egesund wrote: With the message: Index out of range: (/search.ssp -1) This happends before I even get started. It seems it is the line: (use utf8) that makes the trouble. If I exclude this one (which I unfortunately need) it works fine.

[Chicken-users] Spiffy is crashing

2009-04-15 Thread Petter Egesund
With the message: Index out of range: (/search.ssp -1) This happends before I even get started. It seems it is the line: (use utf8) that makes the trouble. If I exclude this one (which I unfortunately need) it works fine. I use Chicken 3.4 on linux, I would like to upgrade to version 4, but I

Re: [Chicken-users] Spiffy is crashing

2009-04-15 Thread Petter Egesund
Hi, thanks for answering. It can be reproduces by these two files below. Trying to open test.ssp (any ssp-file seems to have this problem), crashes the server. I have tried to save files in both ascii and utf8 to see if this was the problem. Petter -- test.ssp --- !-- test.ssp -- html head

UTF8 crashes http-server (was Re: [Chicken-users] Spiffy is crashing)

2009-04-15 Thread peter....@xs4all.nl
On Wed, Apr 15, 2009 at 12:34:03PM +0200, Petter Egesund wrote: Hi, thanks for answering. It can be reproduces by these two files below. Trying to open test.ssp (any ssp-file seems to have this problem), crashes the server. I have tried to save files in both ascii and utf8 to see if this

Re: [Chicken-users] Keyword parameters bug?

2009-04-15 Thread Alonso Andres
On Wed, Apr 15, 2009 at 3:12 AM, felix winkelmann bunny...@gmail.com wrote: I can not reproduce this. Are you using the svn trunk or the 4.0.0 tarball? Hi Felix. Yes, the 4.0.0 tarball: Version 4.0.0 - SVN rev. 13887 It turns out that what was causing this problem was the readline egg that I

[Chicken-users] Re: Experience of using Chicken in production environment

2009-04-15 Thread Ivan Shmakov
felix winkelmann bunny...@gmail.com writes: [...] 4. What is it? What can I do with it?? Target systems reside in separate network, there's no access to Internet, unless I setup connection via GSM modem. Thus I need to fetch all necessary files, bring them there, copy them on target

Re: [Chicken-users] Keyword parameters bug?

2009-04-15 Thread fulvio ciriaco
Hi, until they fix it you can (define (test #!key (some-arg #f) (string #f)) (list some-arg string)) Fulvio From: Alonso Andres alo@gmail.com Subject: Re: [Chicken-users] Keyword parameters bug? Date: Wed, 15 Apr 2009 11:27:19 -0300 On Wed, Apr 15, 2009 at 3:12 AM, felix winkelmann

Re: UTF8 crashes http-server (was Re: [Chicken-users] Spiffy is crashing)

2009-04-15 Thread peter....@xs4all.nl
On Wed, Apr 15, 2009 at 02:09:12PM +0200, peter@xs4all.nl wrote: FWIW, I traced the problem to http-server. Even the simple example on the wiki breaks when utf8 is loaded. I will look deeper into this tonight (at work right now...), but I mention this in case anyone is reading along and

Re: UTF8 crashes http-server (was Re: [Chicken-users] Spiffy is crashing)

2009-04-15 Thread peter....@xs4all.nl
On Wed, Apr 15, 2009 at 10:55:15PM +0200, peter@xs4all.nl wrote: It's the -1 that's unexpected, since it's not a valid string index, so trying to do anything with that causes it to fail big time. It should just return #f on non-matching stuff. Still not sure what exactly causes this,

[Chicken-users] chicken 4 on Windows

2009-04-15 Thread Jordan Cooper
Hello, I'd like to get chicken working on Windows for those occasions when I have to use it -- without having to use Cygwin, if possible. But so far that's the only way I've been able to build it; my attempts with mingw and/or msys haven't been successful. Currently I've been using a precompiled

Re: [Chicken-users] chicken 4 on Windows

2009-04-15 Thread Kon Lovett
On Apr 15, 2009, at 3:33 PM, Jordan Cooper wrote: Hello, I'd like to get chicken working on Windows for those occasions when I have to use it -- without having to use Cygwin, if possible. But so far that's the only way I've been able to build it; my attempts with mingw and/or msys haven't

Re: [Chicken-users] chicken 4 on Windows

2009-04-15 Thread Leonardo Valeri Manera
I've built it with a bare MinGW ... TDM version 4.3.3, so its safe to assume it'll work the vanila 3.x stable: just start cmd.exe, cd to where you unpacked the tarball, add the mingw /bin to the path (with set PATH=%PATH%;C:\MinGW\bin or whatnot) and run: mingw32-make PLATFORM=mingw

Re: [Chicken-users] cond-expand failing inside module

2009-04-15 Thread Jim Ursetto
On Wed, Apr 15, 2009 at 6:26 PM, Nathan Thern nth...@gmail.com wrote: Hello all- It seems cond-expand is not recognized inside module declarations. I have the following file saved as extra.scm: (module  extra  (when unless) (cond-expand (plt) (else You forgot to (import scheme).

Re: [Chicken-users] chicken 4 on Windows

2009-04-15 Thread Jordan Cooper
Thank you. I'd been doing that before, but it was failing (turns out due to a couple GNU utils I didn't have which were needed to bootstrap. And somehow my chicken-defaults.h had gotten garbage in it, but a fresh checkout fixed that). Knowing that it was possible gave me the motivation I needed