diff options
author | Andy Wingo <wingo@pobox.com> | 2009-09-17 12:24:28 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2009-09-18 16:27:32 +0200 |
commit | c5923112fed7b92ff5f1eeea03c74117b2f75490 (patch) | |
tree | 78009128788a1a8b9a5fa7e56aa25964c9419207 /doc/ref/api-memory.texi | |
parent | c543e41eb4e1437d3f994b6b8d54540b33145aa7 (diff) | |
download | guile-c5923112fed7b92ff5f1eeea03c74117b2f75490.tar.gz |
fix thinko in api-memory.texi
Diffstat (limited to 'doc/ref/api-memory.texi')
-rw-r--r-- | doc/ref/api-memory.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ref/api-memory.texi b/doc/ref/api-memory.texi index 2bf7f10f7..15cef6438 100644 --- a/doc/ref/api-memory.texi +++ b/doc/ref/api-memory.texi @@ -113,7 +113,7 @@ functions for dynamic memory allocation that are integrated into the garbage collector and the error reporting system. Memory blocks that are associated with Scheme objects (for example a -smob) should be allocated and freed with @code{scm_gc_malloc} or +smob) should be allocated with @code{scm_gc_malloc} or @code{scm_gc_malloc_pointerless}. These two functions will either return a valid pointer or signal an error. Memory blocks allocated this way can be freed with @code{scm_gc_free}; however, this is not strictly |