Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug#1958, BIND and UNBIND help strings corrected #91

Merged
merged 1 commit into from Aug 18, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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