Re: [PATCH, v2] Fix build on platforms where the stack grows upwards

2020-07-22 Thread John Paul Adrian Glaubitz
Hello! On 2/4/20 1:11 PM, John Paul Adrian Glaubitz wrote: > diff --git a/libguile/continuations.c b/libguile/continuations.c > index 3f86c6bd4..67a47d38c 100644 > --- a/libguile/continuations.c > +++ b/libguile/continuations.c > @@ -323,7 +323,7 @@ scm_dynthrow (SCM cont, uint8_t *mra) > > #if

Re: [PATCH, v2] Fix build on platforms where the stack grows upwards

2020-03-13 Thread John David Anglin
On 2020-03-13 12:29 p.m., Andy Wingo wrote: > On Tue 10 Mar 2020 23:58, John David Anglin writes: > >> On 2020-02-08 9:07 a.m., Ludovic Courtès wrote: >>> John Paul Adrian Glaubitz skribis: >>> * libguile/continuations.c (scm_dynthrow): Fix missing mra parameter to grow_stack for SC

Re: [PATCH, v2] Fix build on platforms where the stack grows upwards

2020-03-13 Thread Andy Wingo
On Tue 10 Mar 2020 23:58, John David Anglin writes: > On 2020-02-08 9:07 a.m., Ludovic Courtès wrote: >> John Paul Adrian Glaubitz skribis: >> >>> * libguile/continuations.c (scm_dynthrow): Fix missing mra >>>parameter to grow_stack for SCM_STACK_GROWS_UP. >> Applied, thanks! > I believe th

Re: [PATCH, v2] Fix build on platforms where the stack grows upwards

2020-03-10 Thread John David Anglin
Hi, On 2020-02-08 9:07 a.m., Ludovic Courtès wrote: > John Paul Adrian Glaubitz skribis: > >> * libguile/continuations.c (scm_dynthrow): Fix missing mra >>parameter to grow_stack for SCM_STACK_GROWS_UP. > Applied, thanks! I believe that this change was also applied to the 2.2 stable branch (

Re: [PATCH, v2] Fix build on platforms where the stack grows upwards

2020-02-08 Thread Ludovic Courtès
Hi, John Paul Adrian Glaubitz skribis: > * libguile/continuations.c (scm_dynthrow): Fix missing mra >parameter to grow_stack for SCM_STACK_GROWS_UP. Applied, thanks! Ludo'.

[PATCH, v2] Fix build on platforms where the stack grows upwards

2020-02-04 Thread John Paul Adrian Glaubitz
* libguile/continuations.c (scm_dynthrow): Fix missing mra parameter to grow_stack for SCM_STACK_GROWS_UP. --- libguile/continuations.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) v2: - Improved grammar in commit message diff --git a/libguile/continuations.c b/libguile/continuati