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

fix "for" compilation

* module/language/ecmascript/compile-ghil.scm (comp): Whoops, fix `for'
  compilation.
This commit is contained in:
Andy Wingo 2009-02-22 12:07:09 +01:00
parent 143177ed9e
commit bb67fe27ab

View file

@ -442,8 +442,8 @@
(make-ghil-if
e l (comp (or test 'true) e)
(make-ghil-begin
e l (list (comp (or inc '(begin)) e)
(comp statement e)
e l (list (comp statement e)
(comp (or inc '(begin)) e)
(make-ghil-call e l (make-ghil-ref
e l (ghil-var-for-ref! e '%continue))
'())))