1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* feature.c (scm_init_feature): Always add threads feature.

This commit is contained in:
Mikael Djurfeldt 2003-04-16 12:52:04 +00:00
parent 58241edc7d
commit 43261b390f
2 changed files with 5 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2003-04-16 Mikael Djurfeldt <mdj@kvast.blakulla.net>
* feature.c (scm_init_feature): Always add threads feature.
2003-04-15 Mikael Djurfeldt <djurfeldt@nada.kth.se> 2003-04-15 Mikael Djurfeldt <djurfeldt@nada.kth.se>
* goops.c (scm_sys_fast_slot_ref): Use SCM_SLOT instead of * goops.c (scm_sys_fast_slot_ref): Use SCM_SLOT instead of

View file

@ -1,4 +1,4 @@
/* Copyright (C) 1995,1996,1998,1999,2000,2001,2002 Free Software Foundation, Inc. /* Copyright (C) 1995,1996,1998,1999,2000,2001,2002, 2003 Free Software Foundation, Inc.
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public
@ -96,9 +96,7 @@ scm_init_feature()
#ifndef CHEAP_CONTINUATIONS #ifndef CHEAP_CONTINUATIONS
scm_add_feature ("full-continuation"); scm_add_feature ("full-continuation");
#endif #endif
#if SCM_USE_NULL_THREADS
scm_add_feature ("threads"); scm_add_feature ("threads");
#endif
scm_c_define ("char-code-limit", SCM_MAKINUM (SCM_CHAR_CODE_LIMIT)); scm_c_define ("char-code-limit", SCM_MAKINUM (SCM_CHAR_CODE_LIMIT));