> (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:
mainzelm 2003-10-23 15:58:08 +00:00
parent acb0c8265f
commit ed3cc365b0
1 changed files with 2 additions and 2 deletions

View File

@ -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."))