1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-09 13:30:26 +02:00

* arbiters.c (scm_make_arbiter): Bugfix: Must SCM_DEFER_INTS

before constructing arbiter.
This commit is contained in:
Mikael Djurfeldt 1997-03-09 15:29:21 +00:00
parent 70ad422696
commit c6ed3e26f4

View file

@ -84,8 +84,10 @@ scm_make_arbiter (name)
{
register SCM z;
SCM_NEWCELL (z);
SCM_DEFER_INTS;
SCM_SETCDR (z, name);
SCM_SETCAR (z, scm_tc16_arbiter);
SCM_ALLOW_INTS;
return z;
}