Correct types for MATCH:START, MATCH:END, and MATCH:SUBSTRING.

This commit is contained in:
sperber 2001-07-07 18:50:19 +00:00
parent 7228fc0e82
commit bae809c6ab
1 changed files with 3 additions and 3 deletions

View File

@ -164,9 +164,9 @@
(compound-interface posix-re-interface
basic-re-interface
(export (regexp-match? (proc (:value) :boolean))
(match:start (proc (:value :exact-integer) :value))
(match:end (proc (:value :exact-integer) :value))
(match:substring (proc (:value :exact-integer) :value))
(match:start (proc (:value &opt :exact-integer) :value))
(match:end (proc (:value &opt :exact-integer) :value))
(match:substring (proc (:value &opt :exact-integer) :value))
(clean-up-cres (proc () :unspecific))
(regexp-search (proc (:value :string &opt :exact-integer)
:value))