diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-03-12 18:30:33 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-03-12 18:30:33 +0000 |
commit | f12677062e15015d7ef7d36fe3d103a77d1fefca (patch) | |
tree | e9ec3a99d2037b92f5c0c95e2a5b6e234b7ebb9d /libguile/weaks.c | |
parent | 67673f7594ecd4768b9e6db847949406a9e10091 (diff) | |
download | guile-f12677062e15015d7ef7d36fe3d103a77d1fefca.tar.gz |
*** empty log message ***
Diffstat (limited to 'libguile/weaks.c')
-rw-r--r-- | libguile/weaks.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/weaks.c b/libguile/weaks.c index 5656d8b69..1c72f273c 100644 --- a/libguile/weaks.c +++ b/libguile/weaks.c @@ -133,7 +133,7 @@ SCM_DEFINE (scm_make_weak_key_hash_table, "make-weak-key-hash-table", 1, 0, 0, SCM_VALIDATE_INUM (1,k); v = scm_make_weak_vector (k, SCM_EOL); SCM_ALLOW_INTS; - SCM_BITS (SCM_VELTS (v)[-1]) = 1; + SCM_UNPACK (SCM_VELTS (v)[-1]) = 1; SCM_ALLOW_INTS; return v; } @@ -149,7 +149,7 @@ SCM_DEFINE (scm_make_weak_value_hash_table, "make-weak-value-hash-table", 1, 0, SCM_VALIDATE_INUM (1,k); v = scm_make_weak_vector (k, SCM_EOL); SCM_ALLOW_INTS; - SCM_BITS (SCM_VELTS (v)[-1]) = 2; + SCM_UNPACK (SCM_VELTS (v)[-1]) = 2; SCM_ALLOW_INTS; return v; } @@ -166,7 +166,7 @@ SCM_DEFINE (scm_make_doubly_weak_hash_table, "make-doubly-weak-hash-table", 1, 0 SCM_VALIDATE_INUM (1,k); v = scm_make_weak_vector (k, SCM_EOL); SCM_ALLOW_INTS; - SCM_BITS (SCM_VELTS (v)[-1]) = 3; + SCM_UNPACK (SCM_VELTS (v)[-1]) = 3; SCM_ALLOW_INTS; return v; } |