Re: [PATCH] fix off-by-one in substring

2024-04-15 Thread Mario Domenech Goulart
Hi, On Mon, 15 Apr 2024 12:50:44 +0200 felix.winkelm...@bevuta.com wrote: > This patch addresses #1823, which was caused by an off-by-one error > in the check of the end-index, which is exclusive. Thanks to "siiky" for > reporting this. Thanks siiky and Felix. I've pushed the patch. I think

Re: [PATCH] fix off-by-one in substring

2024-04-15 Thread felix . winkelmann
> *facepalm* fixed a bug, created another... Ran the utf8 egg's tests, all > passed. > > Thanks felix, and sorry about that. There is no need to be sorry - I had the same situation myself in a different context. Also, R7RS is not very explicit about inclusiveness of bounds (R5RS is, but R7RS

Re: [PATCH] fix off-by-one in substring

2024-04-15 Thread siiky via CHICKEN developers mailing list
*facepalm* fixed a bug, created another... Ran the utf8 egg's tests, all passed. Thanks felix, and sorry about that. siiky

[PATCH] fix off-by-one in substring

2024-04-15 Thread felix . winkelmann
This patch addresses #1823, which was caused by an off-by-one error in the check of the end-index, which is exclusive. Thanks to "siiky" for reporting this. felix From 8e29a4332873ea4cbb98c8847bd5648033b79ae9 Mon Sep 17 00:00:00 2001 From: felix Date: Mon, 15 Apr 2024 12:48:23 +0200 Subject: