diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-04-05 00:32:35 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-04-05 00:32:35 -0700 |
commit | 1e5d313bafa78885490b3fa0759ba76436917d9b (patch) | |
tree | 68abfa7862e4e4dcd199bfde592ca41cee1125f4 /gc.c | |
parent | d1d2e88fcebad94628f6b65b7420dec8de9b10b5 (diff) | |
download | txr-1e5d313bafa78885490b3fa0759ba76436917d9b.tar.gz txr-1e5d313bafa78885490b3fa0759ba76436917d9b.tar.bz2 txr-1e5d313bafa78885490b3fa0759ba76436917d9b.zip |
Bunch of fixes.
* gc.c (gc_mutated): Return the value.
* gc.h (gc_mutated): Declaration updated.
* hash.c (remhash): Fix unsafe assignment to use set macro.
* lib.c (sort): Fix wrong use of mut macro on the list
before it is sorted rather than after.
* lib.h (mut): Trivial version of macro updated to return argument.
* unwind.c (uw_init): The toplevel environment's match_context
should be gc_protected. Though this is probably not used,
which is why it has not been a problem.
Diffstat (limited to 'gc.c')
-rw-r--r-- | gc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -623,11 +623,11 @@ out: return val; } -void gc_mutated(val obj) +val gc_mutated(val obj) { if (backptr_idx >= BACKPTR_VEC_SIZE) gc(); - backptr[backptr_idx++] = obj; + return backptr[backptr_idx++] = obj; } val gc_push(val obj, val *plist) |