Skip to content

Commit

Permalink
Merge pull request #91 from ladislav/bug#1958
Browse files Browse the repository at this point in the history
bug#1958, BIND and UNBIND help strings corrected
  • Loading branch information
carls committed Aug 18, 2013
2 parents 2b2ee73 + 4ac3424 commit 2b52014
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/boot/natives.r
Expand Up @@ -343,18 +343,18 @@ while: native [

bind: native [
{Binds words to the specified context.}
word [block! any-word!] {A word or block of words (modified) (returned)}
word [block! any-word!] {A word or block (modified) (returned)}
context [any-word! any-object!] {A reference to the target context}
/copy {Deep copy block before binding it}
/copy {Bind and return a deep copy of a block, don't modify original}
/only {Bind only first block (not deep)}
/new {Add to context any new words found}
/set {Add to context any new set-words found}
]

unbind: native [
{Unbinds words from context. (Modifies)}
word [block! any-word!] {A word or block of words (modified) (returned)}
/deep "Include nested blocks"
{Unbinds words from context.}
word [block! any-word!] {A word or block (modified) (returned)}
/deep "Process nested blocks"
]

bound?: native [
Expand Down

0 comments on commit 2b52014

Please sign in to comment.