Re: [Chicken-hackers] [PATCH] * chicken.h: Fix C_u_fixnum_modulo by extracting the definition from C_fixnum_modulo

2018-08-25 Thread Peter Bex
On Fri, Aug 17, 2018 at 03:39:26PM +0300, megane wrote: > > I managed to send the same file again, here's the fixed patch. Good catch, here's a signed-off copy. I also added the extra compilation with -unsafe to runtests.bat. Cheers, Peter From 89992e62c1ebca854b1e95e75c0974c1b87d4d26 Mon Sep 1

Re: [Chicken-hackers] [PATCH] * chicken.h: Fix C_u_fixnum_modulo by extracting the definition from C_fixnum_modulo

2018-08-17 Thread megane
I managed to send the same file again, here's the fixed patch. >From cf0cffc4921c4194fc5a807bcf77f3ef1ee284d6 Mon Sep 17 00:00:00 2001 From: megane Date: Fri, 17 Aug 2018 14:59:09 +0300 Subject: [PATCH] * chicken.h: Fix C_u_fixnum_modulo by extracting the definition from C_fixnum_modulo --- c

Re: [Chicken-hackers] [PATCH] * chicken.h: Fix C_u_fixnum_modulo by extracting the definition from C_fixnum_modulo

2018-08-17 Thread megane
Well that was incorrect. There was a missing return. I don't know how the tests passed. >From a5a2a283101a2056b2f8a63873a3869ef2740630 Mon Sep 17 00:00:00 2001 From: megane Date: Fri, 17 Aug 2018 14:59:09 +0300 Subject: [PATCH] * chicken.h: Fix C_u_fixnum_modulo by extracting the definition fro

[Chicken-hackers] [PATCH] * chicken.h: Fix C_u_fixnum_modulo by extracting the definition from C_fixnum_modulo

2018-08-17 Thread megane
Hi, Using the -unsafe flag would cause fxmod to work differently than without. The patch is pretty simple. >From 1fd723ea1ae60a054881b0af903d3e0e0be219e6 Mon Sep 17 00:00:00 2001 From: megane Date: Fri, 17 Aug 2018 14:59:09 +0300 Subject: [PATCH] * chicken.h: Fix C_u_fixnum_modulo by extracting