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/bytevectors.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/bytevectors.c')
-rw-r--r-- | libguile/bytevectors.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/bytevectors.c b/libguile/bytevectors.c index 992fa3fd2..63fdb5ca3 100644 --- a/libguile/bytevectors.c +++ b/libguile/bytevectors.c @@ -2206,9 +2206,9 @@ scm_bootstrap_bytevectors (void) scm_gc_protect_object (make_bytevector (0, SCM_ARRAY_ELEMENT_TYPE_VU8)); #ifdef WORDS_BIGENDIAN - scm_i_native_endianness = scm_permanent_object (scm_from_locale_symbol ("big")); + scm_i_native_endianness = scm_from_locale_symbol ("big"); #else - scm_i_native_endianness = scm_permanent_object (scm_from_locale_symbol ("little")); + scm_i_native_endianness = scm_from_locale_symbol ("little"); #endif scm_c_register_extension ("libguile", "scm_init_bytevectors", |