diff options
| author | 2021-02-28 13:05:05 -0600 | |
|---|---|---|
| committer | 2021-02-28 13:05:05 -0600 | |
| commit | 6392b37c473a0e1d51a51b6d0a76f1dfabc21f28 (patch) | |
| tree | db5946805c6ba7ab65903faeba6a492021554025 | |
| parent | Release 1.15.3 (diff) | |
| parent | Merge pull request #646 from pyrmont/bugfix.run-context-match (diff) | |
Merge branch 'master' of github.com:janet-lang/janetv1.15.3
| -rw-r--r-- | src/boot/boot.janet | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/boot.janet b/src/boot/boot.janet index 4732d900..9dda6dcb 100644 --- a/src/boot/boot.janet +++ b/src/boot/boot.janet @@ -2169,7 +2169,7 @@ (while parser-not-done (if (env :exit) (break)) (buffer/clear buf) - (match (= (chunks buf p)) + (match (chunks buf p) :cancel (do # A :cancel chunk represents a cancelled form in the REPL, so reset. |
