Bootstrap fixes
parent
aaecfef11d
commit
fd740ee042
|
@ -1,4 +1,5 @@
|
||||||
USING: alien arrays help libc math ;
|
IN: alien
|
||||||
|
USING: arrays errors help libc math ;
|
||||||
|
|
||||||
ARTICLE: "alien" "C library interface"
|
ARTICLE: "alien" "C library interface"
|
||||||
"Factor can directly call C functions in native libraries. It is also possible to compile callbacks which run Factor code, and pass them to native libraries as function pointers."
|
"Factor can directly call C functions in native libraries. It is also possible to compile callbacks which run Factor code, and pass them to native libraries as function pointers."
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
USING: generic hashtables help inspector modules namespaces
|
USING: alien errors generic hashtables help inference inspector
|
||||||
parser prettyprint sequences words ;
|
io-internals io libc math-internals modules namespaces parser
|
||||||
|
prettyprint queues sequences sequences-internals test words
|
||||||
|
kernel generic ;
|
||||||
|
|
||||||
ARTICLE: "handbook" "Factor documentation"
|
ARTICLE: "handbook" "Factor documentation"
|
||||||
{ $subsection "changes" }
|
{ $subsection "changes" }
|
||||||
|
@ -41,7 +43,7 @@ ARTICLE: "handbook" "Factor documentation"
|
||||||
{ $subsection "primitive-index" }
|
{ $subsection "primitive-index" }
|
||||||
{ $subsection "error-index" }
|
{ $subsection "error-index" }
|
||||||
{ $subsection "type-index" }
|
{ $subsection "type-index" }
|
||||||
{ $subsection "class-index" };
|
{ $subsection "class-index" } ;
|
||||||
|
|
||||||
ARTICLE: "article-index" "Article index"
|
ARTICLE: "article-index" "Article index"
|
||||||
{ $outliner [ articles get hash-keys ] } ;
|
{ $outliner [ articles get hash-keys ] } ;
|
||||||
|
@ -59,14 +61,15 @@ ARTICLE: "error-index" "Type index"
|
||||||
{ $subsection c-stream-error }
|
{ $subsection c-stream-error }
|
||||||
{ $subsection c-string-error. }
|
{ $subsection c-string-error. }
|
||||||
{ $subsection callstack-overflow. }
|
{ $subsection callstack-overflow. }
|
||||||
|
{ $subsection check-closed }
|
||||||
{ $subsection check-create }
|
{ $subsection check-create }
|
||||||
{ $subsection check-method }
|
{ $subsection check-method }
|
||||||
{ $subsection check-ptr }
|
{ $subsection check-ptr }
|
||||||
|
{ $subsection check-tuple }
|
||||||
{ $subsection check-vocab }
|
{ $subsection check-vocab }
|
||||||
{ $subsection condition }
|
{ $subsection condition }
|
||||||
{ $subsection datastack-overflow. }
|
{ $subsection datastack-overflow. }
|
||||||
{ $subsection datastack-underflow. }
|
{ $subsection datastack-underflow. }
|
||||||
{ $subsection duplex-closed }
|
|
||||||
{ $subsection empty-queue }
|
{ $subsection empty-queue }
|
||||||
{ $subsection expired-error. }
|
{ $subsection expired-error. }
|
||||||
{ $subsection ffi-error. }
|
{ $subsection ffi-error. }
|
||||||
|
@ -83,7 +86,6 @@ ARTICLE: "error-index" "Type index"
|
||||||
{ $subsection retainstack-underflow. }
|
{ $subsection retainstack-underflow. }
|
||||||
{ $subsection signal-error. }
|
{ $subsection signal-error. }
|
||||||
{ $subsection slice-error }
|
{ $subsection slice-error }
|
||||||
{ $subsection tuple-class-error }
|
|
||||||
{ $subsection type-check-error. }
|
{ $subsection type-check-error. }
|
||||||
{ $subsection undefined-symbol-error. }
|
{ $subsection undefined-symbol-error. }
|
||||||
{ $subsection undefined-word-error. }
|
{ $subsection undefined-word-error. }
|
||||||
|
|
|
@ -14,7 +14,7 @@ HELP: in f
|
||||||
HELP: check-vocab "( name -- vocab )"
|
HELP: check-vocab "( name -- vocab )"
|
||||||
{ $values { "name" "a string" } { "vocab" "a hashtable or " { $link f } } }
|
{ $values { "name" "a string" } { "vocab" "a hashtable or " { $link f } } }
|
||||||
{ $description "Outputs a named vocabulary. If the vocabulary does not exist, throws a restartable " { $link check-vocab } " error. If the user invokes the restart, this word outputs " { $link f } "." }
|
{ $description "Outputs a named vocabulary. If the vocabulary does not exist, throws a restartable " { $link check-vocab } " error. If the user invokes the restart, this word outputs " { $link f } "." }
|
||||||
{ $error-description "Thrown by " { $link POSTPONE: USE: } " and " { $link POSTPONE: USING: } " when a given vocabulary does not exist. Vocabularies must be created by " { $link POSTPONE: IN: } " before being used." }
|
{ $error-description "Thrown by " { $link POSTPONE: USE: } " and " { $link POSTPONE: USING: } " when a given vocabulary does not exist. Vocabularies must be created by " { $link POSTPONE: IN: } " before being used." } ;
|
||||||
|
|
||||||
HELP: use+ "( vocab -- )"
|
HELP: use+ "( vocab -- )"
|
||||||
{ $values { "vocab" "a string" } }
|
{ $values { "vocab" "a string" } }
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
IN: memory
|
IN: memory
|
||||||
USING: help test ;
|
USING: errors help test ;
|
||||||
|
|
||||||
HELP: address "( obj -- n )"
|
HELP: address "( obj -- n )"
|
||||||
{ $values { "obj" "an object" } { "n" "a memory address" } }
|
{ $values { "obj" "an object" } { "n" "a memory address" } }
|
||||||
|
|
Loading…
Reference in New Issue