Minor documentation fixes

release
slava 2006-03-29 22:44:04 +00:00
parent 43bf846496
commit c47f2cc8e3
3 changed files with 16 additions and 5 deletions

View File

@ -54,11 +54,17 @@ ARTICLE: "changes" "Changes in the latest release"
} }
} }
{ $subtopic "Contributed libraries" { $subtopic "Contributed libraries"
{ $subtopic { "External process interface - " { $snippet "contrib/processes.factor" } }
{ $list "This is a new library" }
}
{ $subtopic { "Partial continuations - " { $snippet "contrib/partial-continuations.factor" } }
{ $list "This is a new library (Chris Double)" }
}
{ $subtopic { "HTTP server - " { $snippet "contrib/httpd/" } } { $subtopic { "HTTP server - " { $snippet "contrib/httpd/" } }
{ $list { $list
"File responder fixes" "File responder fixes"
"Inspector responder fixes" "Inspector responder fixes"
"Continuation responder fixes" "Continuation responder fixes (Chris Double)"
{ "Add templating engine in " { $snippet "embedded.factor" } " (Alex Chapman)" } { "Add templating engine in " { $snippet "embedded.factor" } " (Alex Chapman)" }
} }
} }
@ -68,9 +74,6 @@ ARTICLE: "changes" "Changes in the latest release"
"Improved XML output capabilities" "Improved XML output capabilities"
} }
} }
{ $subtopic { "External process interface - " { $snippet "contrib/processes.factor" } }
{ $list "This is a new, experimental library." }
}
{ $subtopic { "Factory window manager - " { $snippet "contrib/factory/" } } { $subtopic { "Factory window manager - " { $snippet "contrib/factory/" } }
{ $list "Many updates" } { $list "Many updates" }
} }
@ -81,4 +84,9 @@ ARTICLE: "changes" "Changes in the latest release"
"Added CRC32 checksum (Doug Coleman)" "Added CRC32 checksum (Doug Coleman)"
} }
} }
{ $subtopic { "Space invaders/Intel 8080 emulator - " { $snippet "contrib/space-invaders/" } }
{ $list
"Updated to use Factor UI instead of SDL (Chris Double)"
}
}
} ; } ;

View File

@ -7,7 +7,6 @@ $terpri
"Placing the mouse over a presentation highlights it with a border. Presentations are everywhere; help links, words, and code examples are all presentations. Clicking a presentation displays a browser window looking at the underlying object." "Placing the mouse over a presentation highlights it with a border. Presentations are everywhere; help links, words, and code examples are all presentations. Clicking a presentation displays a browser window looking at the underlying object."
$terpri $terpri
"A left click will reuse the current browser window; a right click always opens a new window." "A left click will reuse the current browser window; a right click always opens a new window."
$terpri
{ $subsection "changes" } { $subsection "changes" }
"The environment:" "The environment:"
{ $subsection "quickref" } { $subsection "quickref" }

View File

@ -30,3 +30,7 @@ HELP: memcpy "( dst src size -- newalien )"
HELP: check-ptr "( c-ptr -- checked )" HELP: check-ptr "( c-ptr -- checked )"
{ $values { "c-ptr" "an alien address, byte array, or " { $link f } } { "checked" "an alien address or byte array with non-zero address" } } { $values { "c-ptr" "an alien address, byte array, or " { $link f } } { "checked" "an alien address or byte array with non-zero address" } }
{ $description "Throws an error if the input is " { $link f } ". Otherwise the object remains on the data stack." } ; { $description "Throws an error if the input is " { $link f } ". Otherwise the object remains on the data stack." } ;
HELP: free "( ptr -- )"
{ $values { "ptr" "an alien address" } }
{ $description "Deallocates a block of memory allocated by " { $link malloc } ", " { $link calloc } " or " { $link realloc } "." } ;