mirror of
https://github.com/janet-lang/janet
synced 2025-11-14 06:17:15 +00:00
Fix -s flag in janet binary.
This commit is contained in:
@@ -195,6 +195,11 @@ recur:
|
||||
if (janet_gc_reachable(fiber))
|
||||
return;
|
||||
janet_gc_mark(fiber);
|
||||
|
||||
/* Mark values on the argument stack */
|
||||
janet_mark_many(fiber->data + fiber->stackstart,
|
||||
fiber->stacktop - fiber->stackstart);
|
||||
|
||||
i = fiber->frame;
|
||||
j = fiber->stackstart - JANET_FRAME_SIZE;
|
||||
while (i > 0) {
|
||||
|
||||
Reference in New Issue
Block a user