1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 06:20:23 +02:00

unparse the tag of a prompt

* module/language/tree-il.scm (unparse-tree-il): Properly unparse the
  tag of a prompt.
This commit is contained in:
Andy Wingo 2010-06-11 16:11:37 +02:00
parent 38030bdf5d
commit 2bcf97a643

View file

@ -321,7 +321,7 @@
`(dynref ,(unparse-tree-il fluid) ,(unparse-tree-il exp)))
((<prompt> 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)))
((<abort> tag args tail)
`(abort ,(unparse-tree-il tag) ,(map unparse-tree-il args)