Merge branch 'marshall' of git://github.com/jedahu/factor

db4
Slava Pestov 2009-07-16 03:08:58 -05:00
commit 86b6f65fd0
3 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@ HELP: C-FUNCTION:
{ $description "Appends a function to the C library in scope and defines an FFI word that calls it." } { $description "Appends a function to the C library in scope and defines an FFI word that calls it." }
{ $examples { $examples
{ $example { $example
"USING: alien.inline prettyprint ;" "USING: alien.inline.syntax prettyprint ;"
"IN: cmath.ffi" "IN: cmath.ffi"
"" ""
"C-LIBRARY: cmathlib" "C-LIBRARY: cmathlib"
@ -44,7 +44,7 @@ HELP: C-LIBRARY:
{ $description "Starts a new C library scope. Other " { $snippet "alien.inline" } " syntax can be used after this word." } { $description "Starts a new C library scope. Other " { $snippet "alien.inline" } " syntax can be used after this word." }
{ $examples { $examples
{ $example { $example
"USING: alien.inline ;" "USING: alien.inline.syntax ;"
"IN: rectangle.ffi" "IN: rectangle.ffi"
"" ""
"C-LIBRARY: rectlib" "C-LIBRARY: rectlib"

View File

@ -12,7 +12,7 @@ HELP: CM-FUNCTION:
} }
{ $examples { $examples
{ $example { $example
"USING: alien.inline alien.marshall.syntax prettyprint ;" "USING: alien.inline.syntax alien.marshall.syntax prettyprint ;"
"IN: example" "IN: example"
"" ""
"C-LIBRARY: exlib" "C-LIBRARY: exlib"

View File

@ -1,6 +1,6 @@
! Copyright (C) 2009 Jeremy Hughes. ! Copyright (C) 2009 Jeremy Hughes.
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: alien.inline alien.marshall.syntax destructors USING: alien.inline.syntax alien.marshall.syntax destructors
tools.test accessors kernel ; tools.test accessors kernel ;
IN: alien.marshall.syntax.tests IN: alien.marshall.syntax.tests