Re: [Chicken-users] configuring readline support; cannot import from undefined module: regex

2011-08-16 Thread Christian Kellermann
Hi John, * John Gabriele jmg3...@gmail.com [110816 05:47]: Should I update both wiki pages? BTW, what does the NB acronym (at the readline egg page, examples section) mean? Yes please do. NB is an abbreviation for nota bene, i.e. please note which is common around people with a background

Re: [Chicken-users] basic .csirc question

2011-08-16 Thread Felix
From: brad clawsie brad.claw...@gmail.com Subject: [Chicken-users] basic .csirc question Date: Mon, 15 Aug 2011 20:37:21 -0700 hi all, i'm new here i have a question about .csirc files is there a way to have indicate in my .csirc the wherabouts of my $CHICKEN_REPOSITORY ? this way, i

Re: [Chicken-users] configuring readline support; cannot import from undefined module: regex

2011-08-16 Thread Moritz Heidkamp
Hi John, John Gabriele jmg3...@gmail.com writes: Hi, Following the instructions at http://wiki.call-cc.org/man/3/Using%20the%20interpreter#auto-completion-and-edition note that you are looking at Chicken _3_ documentation there. The current version is located at

Re: [Chicken-users] configuring readline support; cannot import from undefined module: regex

2011-08-16 Thread John Gabriele
On Tue, Aug 16, 2011 at 7:26 AM, Moritz Heidkamp mor...@twoticketsplease.de wrote: Hi John, John Gabriele jmg3...@gmail.com writes: Hi, Following the instructions at http://wiki.call-cc.org/man/3/Using%20the%20interpreter#auto-completion-and-edition note that you are looking at Chicken

Re: [Chicken-users] configuring readline support; cannot import from undefined module: regex

2011-08-16 Thread John Gabriele
On Tue, Aug 16, 2011 at 3:08 AM, Christian Kellermann ck...@pestilenz.org wrote: Hi John, * John Gabriele jmg3...@gmail.com [110816 05:47]: Should I update both wiki pages? Yes please do. Ok, edited the current (chicken v4) pages, and only fixed the readline link at

Re: [Chicken-users] configuring readline support; cannot import from undefined module: regex

2011-08-16 Thread Jim Ursetto
On Aug 15, 2011, at 10:47 PM, John Gabriele wrote: Hi, Following the instructions at http://wiki.call-cc.org/man/3/Using%20the%20interpreter#auto-completion-and-edition to set up readline support, I get: Error: (import) during expansion of (import ...) - cannot import from undefined

Re: [Chicken-users] ANN: The `str#' macro

2011-08-16 Thread Matt Welland
On Mon, Jun 27, 2011 at 5:36 AM, Stephen Eilert spedr...@gmail.com wrote: On Sat, Jun 25, 2011 at 2:59 PM, Kon Lovett konlov...@gmail.com wrote: Hi, Just added `str#' to the moremacros egg. It behaves like ## but for regular strings. Might be useful. (str# (+ 1 2) = #{(+ 1 2)}) =

[Chicken-users] My code doesn't float

2011-08-16 Thread Paul Colby
Hi, I'm running v4.7.0 installed with brew on my mac running 10.6. Before I do a complete reinstall of my operating system I'd like to know if foreign works for anyone? I've made a c-file, -- test1.c --- #include stdio.h float testFloat(float f) {

Re: [Chicken-users] My code doesn't float

2011-08-16 Thread Paul Colby
Got it, I finally resorted to clang and got a warning about implicit declarations in c compilation. Apparently, one needs something to the effect, (foreign-declare float testFloat(float);) (foreign-declare double testDouble(double);) in stest1.scm to tell c that testFloat and it's argument

Re: [Chicken-users] My code doesn't float

2011-08-16 Thread Jim Ursetto
Better solution is probably to declare these in test1.h and then include it from stest1.scm via # #include test1.h # and also #include it from test1.c for good measure. Same would be true if you had implemented stest1 directly in C. On Aug 17, 2011, at 12:04 AM, Paul Colby wrote: Got it,