diff options
author | Mark H Weaver <mhw@netris.org> | 2015-09-02 13:51:05 -0400 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2016-05-22 19:42:13 +0200 |
commit | 3cf70e36f11b211fc2fa88bf4ecc59a6f8812bc3 (patch) | |
tree | fe305aca3d97fe517f01a437cefdb1cf977fe3ab /doc/ref/libguile-concepts.texi | |
parent | d77247b90b836e149b58e9efccdd9861a28a7576 (diff) | |
download | guile-3cf70e36f11b211fc2fa88bf4ecc59a6f8812bc3.tar.gz |
Fix uses of 'scm_gc_protect', which does not exist, in the manual.
* doc/ref/api-memory.texi (Garbage Collection Functions),
doc/ref/libguile-concepts.texi (Garbage Collection): Change
'scm_gc_protect' --> 'scm_gc_protect_object'.
Diffstat (limited to 'doc/ref/libguile-concepts.texi')
-rw-r--r-- | doc/ref/libguile-concepts.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ref/libguile-concepts.texi b/doc/ref/libguile-concepts.texi index 9e2eb7503..9785f4d6f 100644 --- a/doc/ref/libguile-concepts.texi +++ b/doc/ref/libguile-concepts.texi @@ -1,7 +1,7 @@ @c -*-texinfo-*- @c This is part of the GNU Guile Reference Manual. -@c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2005, 2010, -@c 2011, 2013, 2014 Free Software Foundation, Inc. +@c Copyright (C) 1996-1997, 2000-2005, 2010-2011, 2013-2016 +@c Free Software Foundation, Inc. @c See the file guile.texi for copying conditions. @node General Libguile Concepts @@ -197,7 +197,7 @@ sections, function arguments or local variables on the C and Scheme stacks, and values in machine registers. Other references to @code{SCM} objects, such as those in other random data structures in the C heap that contain fields of type @code{SCM}, can be made visible to the -garbage collector by calling the functions @code{scm_gc_protect} or +garbage collector by calling the functions @code{scm_gc_protect_object} or @code{scm_permanent_object}. Collectively, these values form the ``root set'' of garbage collection; any value on the heap that is referenced directly or indirectly by a member of the root set is preserved, and all |