mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-07 13:16:34 +02:00
Bug fixes
This commit is contained in:
parent
db39595d23
commit
c9d93dd0b2
1 changed files with 2 additions and 2 deletions
|
@ -3291,14 +3291,14 @@ void dispatch_apply_va(void *data, int argc, object clo, object cont, object fun
|
||||||
apply(data, cont, func, lis);
|
apply(data, cont, func, lis);
|
||||||
}
|
}
|
||||||
|
|
||||||
void apply_va(void *data, object cont, int argc, object func, ...)
|
object apply_va(void *data, object cont, int argc, object func, ...)
|
||||||
{
|
{
|
||||||
list lis = NULL, l;
|
list lis = NULL, l;
|
||||||
object tmp;
|
object tmp;
|
||||||
int i;
|
int i;
|
||||||
va_list ap;
|
va_list ap;
|
||||||
do_apply_va
|
do_apply_va
|
||||||
apply(data, cont, func, tmp);
|
return apply(data, cont, func, lis); // Never actually returns
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Reference in a new issue