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:
parent
747022e4cb
commit
47ae4ac8f4
1 changed files with 1 additions and 1 deletions
|
@ -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)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue