Skip to content

Commit 8c668fe

Browse files
committed
Missing Ks.
1 parent af23afd commit 8c668fe

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

ziggy/src/build-runtime.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#lang crook
2-
{:= E0 E1 F H0 H1 I J}
2+
{:= E0 E1 F H0 H1 I J K}
33
(provide runtime-path)
44

55
(require racket/runtime-path)

ziggy/src/compile.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@
303303
(seq (compile-e e c #f)
304304
(Push rax) ; save away to be restored by each clause
305305
(compile-match-clauses ps es (cons #f c) done t?)
306-
(Jmp 'raise_error_align)
306+
(Jmp 'err)
307307
(Label done)
308308
(Add rsp 8)))) {:> K} ; pop the saved value being matched
309309

ziggy/src/read-all.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#lang crook
2-
{:= I J}
2+
{:= I J K}
33
(provide read-all)
44
;; read all s-expression until eof
55
(define (read-all)

0 commit comments

Comments
 (0)