1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 22:10:21 +02:00

fix <prompt> compilation bug

* module/language/tree-il/analyze.scm (analyze-lexicals): Fix bug
  analysing <prompt> expressions.
This commit is contained in:
Andy Wingo 2010-02-22 20:19:32 +01:00
parent 747022e4cb
commit 47ae4ac8f4

View file

@ -349,7 +349,7 @@
(lset-union eq? (step fluid) (step exp)))
((<prompt> tag body handler)
(lset-union eq? (step tag) (step handler)))
(lset-union eq? (step tag) (step body) (step handler)))
((<abort> tag args)
(apply lset-union eq? (step tag) (map step args)))