mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-18 01:30:27 +02:00
Merge remote-tracking branch 'origin/stable-2.0'
Conflicts: module/language/tree-il/peval.scm module/language/tree-il/primitives.scm test-suite/tests/tree-il.test
This commit is contained in:
commit
2f4aae6bce
6 changed files with 108 additions and 21 deletions
|
@ -332,9 +332,9 @@
|
|||
((<let-values> exp body)
|
||||
`(let-values ,(unparse-tree-il exp) ,(unparse-tree-il body)))
|
||||
|
||||
((<dynwind> body winder unwinder)
|
||||
`(dynwind ,(unparse-tree-il body)
|
||||
,(unparse-tree-il winder) ,(unparse-tree-il unwinder)))
|
||||
((<dynwind> winder body unwinder)
|
||||
`(dynwind ,(unparse-tree-il winder) ,(unparse-tree-il body)
|
||||
,(unparse-tree-il unwinder)))
|
||||
|
||||
((<dynlet> fluids vals body)
|
||||
`(dynlet ,(map unparse-tree-il fluids) ,(map unparse-tree-il vals)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue