From c5923112fed7b92ff5f1eeea03c74117b2f75490 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Thu, 17 Sep 2009 12:24:28 +0200 Subject: [PATCH] fix thinko in api-memory.texi --- doc/ref/api-memory.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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