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/feature.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/feature.c')
-rw-r--r-- | libguile/feature.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/feature.c b/libguile/feature.c index 9ef4b658e..700740319 100644 --- a/libguile/feature.c +++ b/libguile/feature.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995,1996,1998,1999,2000,2001,2002, 2003, 2004, 2006, 2007 Free Software Foundation, Inc. +/* Copyright (C) 1995,1996,1998,1999,2000,2001,2002, 2003, 2004, 2006, 2007, 2009 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License @@ -99,7 +99,7 @@ SCM_DEFINE (scm_set_program_arguments_scm, "set-program-arguments", 1, 0, 0, void scm_init_feature() { - progargs_fluid = scm_permanent_object (scm_make_fluid ()); + progargs_fluid = scm_make_fluid (); features_var = scm_c_define ("*features*", SCM_EOL); #ifndef _Windows |