Re: [Guile-commits] GNU Guile branch, master, updated. 442f3f20ddd33b43743ea181d95024c10622df52

2009-05-26 Thread Ludovic Courtès
Hello! Thanks for working on this! Andy Wingo wi...@wingomac.bcn.oblong.net writes: +#if BUILDING_LIBGUILE HAVE_VISIBILITY +# define SCM_API extern __attribute__((__visibility__(default))) +#elif BUILDING_LIBGUILE defined _MSC_VER This should be: #if defined BUILDING_LIBGUILE

Re: Automated mingw32 build

2009-05-26 Thread Ludovic Courtès
Hey! Neil Jerram n...@ossau.uklinux.net writes: I've added an incantation to do that, so hopefully that will happen automatically from tonight. Nice, thanks. Should we also have something in the version information to make clear that the code being built is a Git head and not a released

Re: [Guile-commits] GNU Guile branch, master, updated. 442f3f20ddd33b43743ea181d95024c10622df52

2009-05-26 Thread Ludovic Courtès
Andy Wingo wi...@pobox.com writes: But I guess that we want to support -Wundef or something, and this is in a public header, so I suppose you are right :) Exactly. Also, I'd have preferred `_GUILE_WITHIN_GUILE', which is clearly in Guile's name space, and is similar to GMP's

Re: [Guile-commits] GNU Guile branch, string_abstraction2, updated. 823e444052817ee120d87a3575acb4f767f17475

2009-05-26 Thread Andy Wingo
On Tue 26 May 2009 00:22, l...@gnu.org (Ludovic Courtès) writes: However, this relies on eval-after-read semantics. That is, if the whole file is read at once, *then* evaluated, that won't work, right? Or read at once, *then* compiled, *then* evaluated; or even, read one expression at a time,

Re: [Guile-commits] GNU Guile branch, string_abstraction2, updated. 823e444052817ee120d87a3575acb4f767f17475

2009-05-26 Thread Mike Gran
From: Andy Wingo wi...@pobox.com On Tue 26 May 2009 00:22, l...@gnu.org (Ludovic Courtès) writes: However, this relies on eval-after-read semantics. That is, if the whole file is read at once, *then* evaluated, that won't work, right? Or read at once, *then* compiled, *then*

Re: 1.9.1 checklist

2009-05-26 Thread Julian Graham
Hi Andy,  R6RS library support:   No code yet. Julian? :-) Yeah... As I mentioned on IRC, I punted temporarily on that while I was rewriting the parser for my CSS library. Just yesterday, though, I started doing some initial work towards adding version information to modules and the

Re: 1.9.1 checklist

2009-05-26 Thread Mike Gran
Hey folks! So, IMO we need to start pushing towards a release. How about getting a 1.9.1 out soon? Unicode: Code shaping up, needs review and R6RS-libs. Unclear how much will be in shape for 2.0. Acceptable to ship with only the finished parts. The big steps to hit a beta on

Re: 1.9.1 checklist

2009-05-26 Thread Ludovic Courtès
Hello Andy! This all sounds like an excellent plan to me! In practice, that would mean making the first release on June 15th, right? Ludo'.

low-hanging SRFI fruit (SRFI-98)

2009-05-26 Thread Julian Graham
Hi Guilers, While looking over the prerequisites for the proposed SRFI-100, I came across SRFI-98, which seemed like pretty easy win for Guile. So I did a quick implementation on the subway -- find it attached. I'll write up unit tests and docs if people think it's suitable for integration.