mirror of
https://github.com/janet-lang/janet
synced 2025-10-19 09:47:40 +00:00
Refactor native module declarations. marshal can now
serialize entire environment.
This commit is contained in:
@@ -467,7 +467,7 @@ static const DstReg cfuns[] = {
|
||||
|
||||
/* Module entry point */
|
||||
int dst_lib_fiber(DstArgs args) {
|
||||
DstTable *env = dst_env_arg(args);
|
||||
dst_env_cfuns(env, cfuns);
|
||||
DstTable *env = dst_env(args);
|
||||
dst_cfuns(env, NULL, cfuns);
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user