diff options
author | Andy Wingo <wingo@pobox.com> | 2009-12-05 11:30:09 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2009-12-05 11:32:50 +0100 |
commit | f39448c5a3804f823e367d97cd5e862b016cb8aa (patch) | |
tree | 6994d6aef8e6a1d24eb066e98b3a7b58ba903df2 /libguile/eval.c | |
parent | 1be8532fdb7715451b939571f9a147635df9cd65 (diff) | |
download | guile-f39448c5a3804f823e367d97cd5e862b016cb8aa.tar.gz |
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.
Diffstat (limited to 'libguile/eval.c')
-rw-r--r-- | libguile/eval.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libguile/eval.c b/libguile/eval.c index 4525e4faa..eb56f4ab7 100644 --- a/libguile/eval.c +++ b/libguile/eval.c @@ -926,7 +926,6 @@ scm_init_eval () scm_listofnull = scm_list_1 (SCM_EOL); f_apply = scm_c_define_gsubr ("apply", 2, 0, 1, scm_apply); - scm_permanent_object (f_apply); scm_tc16_boot_closure = scm_make_smob_type ("boot-closure", 0); scm_set_smob_apply (scm_tc16_boot_closure, boot_closure_apply, 0, 0, 1); |