mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-09 21:40:33 +02:00
* arbiters.c (scm_make_arbiter): Bugfix: Must SCM_DEFER_INTS
before constructing arbiter.
This commit is contained in:
parent
70ad422696
commit
c6ed3e26f4
1 changed files with 2 additions and 0 deletions
|
@ -84,8 +84,10 @@ scm_make_arbiter (name)
|
||||||
{
|
{
|
||||||
register SCM z;
|
register SCM z;
|
||||||
SCM_NEWCELL (z);
|
SCM_NEWCELL (z);
|
||||||
|
SCM_DEFER_INTS;
|
||||||
SCM_SETCDR (z, name);
|
SCM_SETCDR (z, name);
|
||||||
SCM_SETCAR (z, scm_tc16_arbiter);
|
SCM_SETCAR (z, scm_tc16_arbiter);
|
||||||
|
SCM_ALLOW_INTS;
|
||||||
return z;
|
return z;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue