1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 22:10:21 +02:00

* feature.c (scm_init_feature): Added threads feature (needs to be

initialized here, since features doesn't exist when
scm_init_threads is called).
This commit is contained in:
Mikael Djurfeldt 1996-10-01 03:18:32 +00:00
parent 027fde3970
commit a6cba733bc

View file

@ -95,7 +95,10 @@ scm_init_feature()
#ifndef CHEAP_CONTINUATIONS
scm_add_feature ("full-continuation");
#endif
#ifdef USE_THREADS
scm_add_feature ("threads");
#endif
scm_sysintern ("char-code-limit", SCM_MAKINUM (SCM_CHAR_CODE_LIMIT));
#include "feature.x"
}