From 2bcf97a64373e96c89706c42f0ddd4e2860b537a Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Fri, 11 Jun 2010 16:11:37 +0200 Subject: [PATCH] unparse the tag of a prompt * module/language/tree-il.scm (unparse-tree-il): Properly unparse the tag of a prompt. --- module/language/tree-il.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/language/tree-il.scm b/module/language/tree-il.scm index c268effac..6811734b7 100644 --- a/module/language/tree-il.scm +++ b/module/language/tree-il.scm @@ -321,7 +321,7 @@ `(dynref ,(unparse-tree-il fluid) ,(unparse-tree-il exp))) (( tag body handler) - `(prompt ,tag ,(unparse-tree-il body) ,(unparse-tree-il handler))) + `(prompt ,(unparse-tree-il tag) ,(unparse-tree-il body) ,(unparse-tree-il handler))) (( tag args tail) `(abort ,(unparse-tree-il tag) ,(map unparse-tree-il args)