Re: export macro symbol with @ failed

2011-06-13 Thread Ian Price
nalaginrut writes: > hi all, I got a problem with @. > It's OK when I export procedure with @: > == > (define aaa (@ (rnrs) make-bytevector)) > == > > but it'd failed if exported a macro. > > scheme@(guile-user)> (define aaa (@ (rnrs) unless)

Re: export macro symbol with @ failed

2011-06-13 Thread nalaginrut
> I don't think so. The second form would be equivalent to (define aaa > unless) if unless was imported by the module, and this is also an error > because unless is not an identifier syntax. > > If I were you I'd (use-modules (rnrs control)) or (import (rnrs > control)) instead. > Well, thanks!

Re: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.1-92-gf4e45e9

2011-06-13 Thread Andy Wingo
Heya :) On Wed 08 Jun 2011 23:05, l...@gnu.org (Ludovic Courtès) writes: > "Andy Wingo" skribis: > >>"Return a new future for THUNK. Execution may start at any point >> concurrently, or it can start at the time when the returned future is >> touched." >> + (create-workers!) > > Wouldn't