Fix -r switch in repl

This commit is contained in:
Calvin Rose 2021-10-14 17:25:12 -05:00
parent 0774e79e4f
commit 74c9cf03d0
1 changed files with 1 additions and 1 deletions

View File

@ -3573,7 +3573,7 @@
1)
"v" (fn [&] (print janet/version "-" janet/build) (os/exit 0) 1)
"s" (fn [&] (set raw-stdin true) (set should-repl true) 1)
"r" (fn [&] (set should-repl true) 0)
"r" (fn [&] (set should-repl true) 1)
"p" (fn [&] (set exit-on-error false) 1)
"q" (fn [&] (set quiet true) 1)
"i" (fn [&] (set expect-image true) 1)