mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-24 12:20:20 +02:00
remove a bunch of needless scm_permanent_object calls
* libguile/array-handle.c: * libguile/bytevectors.c: * libguile/deprecated.c: * libguile/eval.c: * libguile/feature.c: * libguile/filesys.c: * libguile/gc.c: * libguile/gdbint.c: * libguile/goops.c: * libguile/instructions.c: * libguile/load.c: * libguile/modules.c: * libguile/numbers.c: * libguile/options.c: * libguile/ports.c: * libguile/scmsigs.c: * libguile/srcprop.c: * libguile/srfi-4.c: * libguile/stacks.c: * libguile/threads.c: * libguile/vm.c: Remove calls to scm_permanent_object, as they are no longer needed with the BDW GC.
This commit is contained in:
parent
1be8532fdb
commit
f39448c5a3
21 changed files with 68 additions and 123 deletions
|
@ -166,7 +166,7 @@ gdb_read (char *str)
|
|||
}
|
||||
}
|
||||
gdb_result = ans;
|
||||
/* Protect answer from future GC */
|
||||
/* Protect answer from future GC (FIXME: still needed with BDW-GC?) */
|
||||
if (SCM_NIMP (ans))
|
||||
scm_permanent_object (ans);
|
||||
exit:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue