diff options
author | Andy Wingo <wingo@pobox.com> | 2011-10-23 20:45:01 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2011-10-23 20:45:01 +0200 |
commit | 26b263541b56cf79f2c249950c5eadb87ce28b68 (patch) | |
tree | b92aa6a7215eebf802109f497db66a8fb9da5ee8 /libguile/gc.c | |
parent | c259741533f6cdaaeb909fc233ba281898c3f2c2 (diff) | |
download | guile-26b263541b56cf79f2c249950c5eadb87ce28b68.tar.gz |
add weak sets
* libguile/weak-set.c:
* libguile/weak-set.h: New files, implementing weak sets, for use in the
symbol table and port set. Eventually we will be able to remove weak
pairs.
* libguile.h:
* libguile/Makefile.am: Add new files.
* libguile/evalext.c:
* libguile/gc.c:
* libguile/init.c:
* libguile/print.c:
* libguile/tags.h: Add support for the new types.
Diffstat (limited to 'libguile/gc.c')
-rw-r--r-- | libguile/gc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libguile/gc.c b/libguile/gc.c index c68f295b1..42b29fb27 100644 --- a/libguile/gc.c +++ b/libguile/gc.c @@ -751,6 +751,8 @@ scm_i_tag_name (scm_t_bits tag) return "foreign"; case scm_tc7_hashtable: return "hashtable"; + case scm_tc7_weak_set: + return "weak-set"; case scm_tc7_fluid: return "fluid"; case scm_tc7_dynamic_state: |