regex-find ignores start position of matcher

Issue #197 resolved
Takashi Kato repo owner created an issue

This should return '(#t #t #t)

#!read-macro=sagittarius/regex
(import (sagittarius regex))

(let ((m (regex-matcher #// "abc" 1)))
  (let loop ((r '()))
    (if (regex-find m)
        (loop (cons #t r))
        r)))

Comments (1)

  1. Log in to comment