1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 03:30:27 +02:00

Fix baseline canonicalization of reifying prompts

* module/language/tree-il/compile-bytecode.scm (canonicalize): Fix arg
  order to make-prompt.
This commit is contained in:
Andy Wingo 2020-05-11 11:05:06 +02:00
parent f9c9e71046
commit 2e6f2feefc

View file

@ -516,7 +516,7 @@
;; expressions. (Escape-only prompt bodies are already
;; expressions.)
(($ <prompt> src #f tag body handler)
(make-prompt src tag #f (make-call src body '()) handler))
(make-prompt src #f tag (make-call src body '()) handler))
(_ exp)))
exp))