You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In .../jaro:
169:30 1 (helper _ _ _)
In ice-9/regex.scm:
61:5 0 (match:count _)
ice-9/regex.scm:61:5: In procedure match:count:
In procedure vector-length: Wrong type argument in position 1 (expecting vector): #<unspecified>
That happens because jaro executes pattern for each element of #:program, but doesn't check that the regex matched anything. A workaround is to make wrap #:pattern in a list.
The text was updated successfully, but these errors were encountered:
Given such association:
jaro
fails with:That happens because
jaro
executespattern
for each element of#:program
, but doesn't check that the regex matched anything. A workaround is to make wrap#:pattern
in a list.The text was updated successfully, but these errors were encountered: