bug#40584: R7RS string-for-each does not work two or more strings on its argument

2021-05-12 Thread Taylan Kammer
Attached is a simple patch to use Mark's implementation within the current (scheme base) module. - Taylan From dda2aaaf0e9064f11d89a83f55340ba0c0115bca Mon Sep 17 00:00:00 2001 From: Taylan Kammer Date: Wed, 12 May 2021 22:36:26 +0200 Subject: [PATCH] Fix (scheme base) string-for-each. *

bug#40584: R7RS string-for-each does not work two or more strings on its argument

2020-04-12 Thread OKUMURA Yuki
Hi, Actually it's my own bug but let me report here: (scheme base) lacks implementation for string-for-each thus following code does not work; (import (scheme base)) (string-for-each (lambda (e f) 'ok) "01234" "slas") Please note that we already have incompatible string-for-each for