Fix for
> (regexp-search? (posix-string->regexp "$") "test") Error: exception wrong-type-argument (checked-record-ref '#{Unspecific} '#{Record-type 46 cre} 1) by Peter Wang
This commit is contained in:
parent
acb0c8265f
commit
ed3cc365b0
|
@ -33,8 +33,8 @@
|
|||
((re-dsm? re)
|
||||
(check-cache re-dsm:posix set-re-dsm:posix))
|
||||
|
||||
((re-bos? re) (or bos-cre (set! bos-cre (compile))))
|
||||
((re-eos? re) (or eos-cre (set! eos-cre (compile))))
|
||||
((re-bos? re) (if (not bos-cre) (set! bos-cre (compile))) bos-cre)
|
||||
((re-eos? re) (if (not eos-cre) (set! eos-cre (compile))) eos-cre)
|
||||
|
||||
((re-bol? re) (error "BOL regexp not supported in this implementation."))
|
||||
((re-eol? re) (error "EOL regexp not supported in this implementation."))
|
||||
|
|
Loading…
Reference in New Issue