Fixes
parent
022cce01c2
commit
ede01d8398
|
@ -32,7 +32,7 @@ $nl
|
||||||
{ $subsection >r }
|
{ $subsection >r }
|
||||||
{ $subsection r> }
|
{ $subsection r> }
|
||||||
"The top of the data stack is ``hidden'' between " { $link >r } " and " { $link r> } ":"
|
"The top of the data stack is ``hidden'' between " { $link >r } " and " { $link r> } ":"
|
||||||
{ $example "1 2 3 >r .s r>" "2\n1" }
|
{ $example "1 2 3 >r .s r>" "1\n2" }
|
||||||
"Words must not leave objects on the retain stack, nor expect values to be there on entry. The retain stack is for local storage within a word only, and occurrences of " { $link >r } " and " { $link r> } " must be balanced inside a single quotation. One exception is the following trick involving " { $link if } "; values may be pushed on the retain stack before the condition value is computed, as long as both branches of the " { $link if } " pop the values off the retain stack before returning:"
|
"Words must not leave objects on the retain stack, nor expect values to be there on entry. The retain stack is for local storage within a word only, and occurrences of " { $link >r } " and " { $link r> } " must be balanced inside a single quotation. One exception is the following trick involving " { $link if } "; values may be pushed on the retain stack before the condition value is computed, as long as both branches of the " { $link if } " pop the values off the retain stack before returning:"
|
||||||
{ $code
|
{ $code
|
||||||
": foo ( m ? n -- m+n/n )"
|
": foo ( m ? n -- m+n/n )"
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
USING: help.markup help.syntax io strings ;
|
USING: help.markup help.syntax io strings ;
|
||||||
IN: tools.browser
|
IN: tools.browser
|
||||||
|
|
||||||
|
ARTICLE: "vocab-index" "Vocabulary index"
|
||||||
|
{ $tags,authors }
|
||||||
|
{ $describe-vocab "" } ;
|
||||||
|
|
||||||
ARTICLE: "tools.browser" "Vocabulary browser"
|
ARTICLE: "tools.browser" "Vocabulary browser"
|
||||||
"Getting and setting vocabulary meta-data:"
|
"Getting and setting vocabulary meta-data:"
|
||||||
{ $subsection vocab-summary }
|
{ $subsection vocab-summary }
|
||||||
|
|
|
@ -303,10 +303,6 @@ C: <vocab-author> vocab-author
|
||||||
"Authors" $heading
|
"Authors" $heading
|
||||||
all-authors authors. ;
|
all-authors authors. ;
|
||||||
|
|
||||||
ARTICLE: "vocab-index" "Vocabulary index"
|
|
||||||
{ $tags,authors }
|
|
||||||
{ $describe-vocab "" } ;
|
|
||||||
|
|
||||||
M: vocab-spec article-title vocab-name " vocabulary" append ;
|
M: vocab-spec article-title vocab-name " vocabulary" append ;
|
||||||
|
|
||||||
M: vocab-spec article-name vocab-name ;
|
M: vocab-spec article-name vocab-name ;
|
||||||
|
|
Loading…
Reference in New Issue