Re: [OT] Re: Question on mutability of argument lists

2014-03-20 Thread Andy Wingo
On Thu 20 Mar 2014 11:06, Marco Maggi writes: > Something similar can be done for return values[1]; in > Vicare every function call site has 2 return points: one for > single return value; the other for 0, 2, more return values. > One return point goes on with the computation, the other

GNU Guile 2.0.11 released

2014-03-20 Thread Ludovic Courtès
We are pleased to announce GNU Guile release 2.0.11, the next maintenance release for the 2.0.x stable series. This release fixes a regression introduced in 2.0.10, which affects the C functions to access SRFI-4 vectors. The Guile web page is located at http://gnu.org/software/guile/ . Guile is

Re: Potluck dish - Simple functional reactive programming

2014-03-20 Thread Thompson, David
On Thu, Mar 20, 2014 at 11:46 AM, Panicz Maciej Godek wrote: > Hi, > it's been over a month, and I finally had an opportunity to take a > closer look at your signal library (and also the video demonstration > available at your blog). I have to say that I'm truly impressed with > the code and grate

Re: Potluck dish - Simple functional reactive programming

2014-03-20 Thread Panicz Maciej Godek
Hi, it's been over a month, and I finally had an opportunity to take a closer look at your signal library (and also the video demonstration available at your blog). I have to say that I'm truly impressed with the code and grateful for it, and I find it very inspiring. However, if it comes to the n

[OT] Re: Question on mutability of argument lists

2014-03-20 Thread Niels Möller
Marco Maggi writes: > Mh... I have very few functions accepting a single argument. I think there are lots of standard functions with a single argument, including many accessor functions, predicates, and conversion functions. And some functions which accept a variable number of arguments have spe

Re: GNU Guile 2.0.10 released

2014-03-20 Thread Panicz Maciej Godek
2014-03-20 9:04 GMT+01:00 Ludovic Courtès : > Panicz Maciej Godek skribis: [...] >> I did remove the only reference to mkstemp.c that appeared in the >> Makefile.am, then run autoreconf and configure, but it turned out that >> there were still some dependencies on libguile_2.0_la-mkstemp.o in the

[OT] Re: Question on mutability of argument lists

2014-03-20 Thread Marco Maggi
Niels Möller wrote: > And somthing similar could be done even if the calling convention is the > "natural" one, that the caller conses the arguments onto a list as they > are evaluated, and passes that list to the implementation of the > procedure. The function prologue in the callee would then ext

Re: GNU Guile 2.0.10 released

2014-03-20 Thread Ludovic Courtès
Panicz Maciej Godek skribis: > 2014-03-19 14:50 GMT+01:00 Ludovic Courtès : > >> Could you edit libguile/Makefile.am (or libguile/Makefile.in, if >> Automake isn't installed), and remove occurrences of mkstemp.c in there? >> >> Let us know if it solves the problem. > > I did remove the only refer