summaryrefslogtreecommitdiff
path: root/libguile/feature.c
diff options
context:
space:
mode:
Diffstat (limited to 'libguile/feature.c')
-rw-r--r--libguile/feature.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/libguile/feature.c b/libguile/feature.c
index 464697508..9eb82ee7d 100644
--- a/libguile/feature.c
+++ b/libguile/feature.c
@@ -45,7 +45,7 @@ void
scm_add_feature (const char *str)
{
SCM old = SCM_VARIABLE_REF (features_var);
- SCM new = scm_cons (scm_from_locale_symbol (str), old);
+ SCM new = scm_cons (scm_from_utf8_symbol (str), old);
SCM_VARIABLE_SET (features_var, new);
}
@@ -110,15 +110,9 @@ scm_init_feature()
#ifdef vms
scm_add_feature(s_ed);
#endif
-#ifdef SICP
- scm_add_feature("sicp");
-#endif
#ifndef GO32
scm_add_feature("char-ready?");
#endif
-#ifndef CHEAP_CONTINUATIONS
- scm_add_feature ("full-continuation");
-#endif
#if SCM_USE_PTHREAD_THREADS
scm_add_feature ("threads");
#endif