Skip to content

Commit 30569db

Browse files
committed
FIX: don't allow error! and task! to be a bind's context
resolves: Oldes/Rebol-issues#894
1 parent 01a1f23 commit 30569db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/boot/natives.reb

+1-1
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ as: native [
358358
bind: native [
359359
{Binds words to the specified context.}
360360
word [block! any-word!] {A word or block (modified) (returned)}
361-
context [any-word! any-object!] {A reference to the target context}
361+
context [any-word! object! module! port!] {A reference to the target context}
362362
/copy {Bind and return a deep copy of a block, don't modify original}
363363
/only {Bind only first block (not deep)}
364364
/new {Add to context any new words found}

0 commit comments

Comments
 (0)