diff options
author | Greg J. Badros <gjb@cs.washington.edu> | 2000-02-14 03:13:19 +0000 |
---|---|---|
committer | Greg J. Badros <gjb@cs.washington.edu> | 2000-02-14 03:13:19 +0000 |
commit | b450f07086e27f6bb428a5d8e6f17fa997073c26 (patch) | |
tree | 3f37f79a9b5fc4ffaf20066debe1c01b3422139b /libguile/gc.c | |
parent | 92540145dd16d24881aad29ecf6cc79e76e97702 (diff) | |
download | guile-b450f07086e27f6bb428a5d8e6f17fa997073c26.tar.gz |
* arbiters.c, eq.c, gc.c, guardians.c, list.c, ports.c, print.c,
regex-posix.c, scmsigs.c, stime.c, strings.c, variable.c, stime.c,
strings.c, variable.c: Added lots of documentation, cleaned up
some existing documentation. Occasionally changed formal params
to match docs. Also folded an #ifdef into the inners of a
primitive instead of having two copies of the primitive
(`get-internal-real-time', from stime.c)
Diffstat (limited to 'libguile/gc.c')
-rw-r--r-- | libguile/gc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libguile/gc.c b/libguile/gc.c index b0fca6c75..70bc24886 100644 --- a/libguile/gc.c +++ b/libguile/gc.c @@ -245,7 +245,8 @@ which_seg (SCM cell) SCM_DEFINE (scm_map_free_list, "map-free-list", 0, 0, 0, (), -"") + "Print debugging information about the free-list.\n" + "`map-free-list' is only included in GUILE_DEBUG_FREELIST builds of Guile.") #define FUNC_NAME s_scm_map_free_list { int last_seg = -1, count = 0; |