diff options
author | Daniel Hartwig <mandyke@gmail.com> | 2013-02-14 11:23:51 +0800 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2013-02-14 10:45:27 +0100 |
commit | 5ad85ba15f901163190b365ddd744db22bbbfc42 (patch) | |
tree | 0ae4c7eb0448ac4955d1629e009c9467ca75c8cc | |
parent | 10a467f39887b722cb4cffa1a22c94a7b1e37bbc (diff) |
update old references in FFI doc
* doc/ref/api-foreign.texi (Foreign Types): Replace references to the
old foreign->bytevector and bytevector->foreign with the new procedure
names using pointer.
-rw-r--r-- | doc/ref/api-foreign.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ref/api-foreign.texi b/doc/ref/api-foreign.texi index 2473870d3..e59566849 100644 --- a/doc/ref/api-foreign.texi +++ b/doc/ref/api-foreign.texi @@ -803,8 +803,8 @@ int64_t a; uint8_t b; @}}: @end example As yet, Guile only has convenience routines to support -conventionally-packed structs. But given the @code{bytevector->foreign} -and @code{foreign->bytevector} routines, one can create and parse +conventionally-packed structs. But given the @code{bytevector->pointer} +and @code{pointer->bytevector} routines, one can create and parse tightly packed structs and unions by hand. See the code for @code{(system foreign)} for details. |