bug#40582: Valid URIs are rejected

2020-04-12 Thread Julien Lepiller
Hi, Using (web uri), I was trying to parse "uri://a/c". Reading RFC3986, it should be a valid URI (see rule for reg-name in 3.2.2). However, passing it to string->uri results in #f. I've tracked this down to valid-host? which returns #f for "a". The reason is that the regexp checking if the

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