mirror of
https://github.com/janet-lang/janet
synced 2024-11-28 19:19:53 +00:00
Fix -s flag in janet binary.
This commit is contained in:
parent
56927e1b81
commit
8dde89126e
@ -195,6 +195,11 @@ recur:
|
|||||||
if (janet_gc_reachable(fiber))
|
if (janet_gc_reachable(fiber))
|
||||||
return;
|
return;
|
||||||
janet_gc_mark(fiber);
|
janet_gc_mark(fiber);
|
||||||
|
|
||||||
|
/* Mark values on the argument stack */
|
||||||
|
janet_mark_many(fiber->data + fiber->stackstart,
|
||||||
|
fiber->stacktop - fiber->stackstart);
|
||||||
|
|
||||||
i = fiber->frame;
|
i = fiber->frame;
|
||||||
j = fiber->stackstart - JANET_FRAME_SIZE;
|
j = fiber->stackstart - JANET_FRAME_SIZE;
|
||||||
while (i > 0) {
|
while (i > 0) {
|
||||||
|
@ -51,7 +51,7 @@
|
|||||||
|
|
||||||
(when (or *should-repl* *no-file*)
|
(when (or *should-repl* *no-file*)
|
||||||
(if *raw-stdin*
|
(if *raw-stdin*
|
||||||
(repl nil identity)
|
(repl nil (fn [x &] x))
|
||||||
(do
|
(do
|
||||||
(print (string "Janet " janet/version "-" janet/build " Copyright (C) 2017-2018 Calvin Rose"))
|
(print (string "Janet " janet/version "-" janet/build " Copyright (C) 2017-2018 Calvin Rose"))
|
||||||
(repl (fn [buf p]
|
(repl (fn [buf p]
|
||||||
|
Loading…
Reference in New Issue
Block a user