Re: [Chicken-users] wiki not colorizing colorize sample

2010-10-15 Thread Peter Bex
On Thu, Oct 14, 2010 at 09:15:58PM -0400, John Gabriele wrote: Hi, I just noticed a glitch in the code sample at http://wiki.call-cc.org/egg/qwiki under Create a subversion repository. I'm seeing the comment ;; checked out show up syntax highlighted like a comment, but the comment line

[Chicken-users] Another DVCS to look at: fossil

2010-10-15 Thread Christian Kellermann
Hi there, I just noticed the fossil scm a couple of weeks ago and I wanted to have a look at it. I have converted the chicken-core git repo to it for fun and I have put the database online at http://pestilenz.org/~ckeen/chicken.fossil. To try this you need to compile fossil or use a software

Re: [Chicken-users] Another DVCS to look at: fossil

2010-10-15 Thread John Gabriele
On Fri, Oct 15, 2010 at 9:57 AM, Christian Kellermann ck...@pestilenz.org wrote: Hi there, I just noticed the fossil scm a couple of weeks ago and I wanted to have a look at it. I have converted the chicken-core git repo to it for fun and I have put the database online at

Re: [Chicken-users] Another DVCS to look at: fossil

2010-10-15 Thread F. Wittenberger
my 0.02$ on this a) this is a chicken mailing list, VCS's are a terrible matter - at least for me - since they are a matter of taste (and I have none); So better we are aware that we are off-topic! b) every vcs I found until now was able to start a religious war even *within* myself c) so far I

[Chicken-users] newbie question - nth-value ?

2010-10-15 Thread Joe Python
When I try to call the builtin 'nth-value' , I was expecting a number, instead I am getting a error. snip #;1 (nth-value 2 '(2 3 4 5)) Error: (list-tail) out of range ((2 3 4 5)) /snip The documentation says ; *[syntax]* (nth-value N EXP) Returns the Nth value (counting from zero) of the

Re: [Chicken-users] newbie question - nth-value ?

2010-10-15 Thread Alonso Andres
2010/10/15 Joe Python jopyt...@gmail.com: When I try to call the builtin 'nth-value' , I was expecting a number, instead I am getting a error. snip #;1 (nth-value 2 '(2 3 4 5)) Error: (list-tail) out of range ((2 3 4 5)) /snip You are expecting NTH-VALUE to do what LIST-REF actually does: