1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

fix typo when compiling receive forms

* module/language/glil/compile-objcode.scm (codegen): Fix an embarassing
  typo, introduced in c2c82b62f4
This commit is contained in:
Andy Wingo 2009-01-12 21:37:44 +01:00
parent c32929d14d
commit 7bd5f2913d

View file

@ -173,7 +173,7 @@
((<glil-mv-bind> vars rest)
(push-bindings! (munge-bindings vars nargs))
(push-code! `(truncate-values ,(length binds) ,(if rest 1 0))))
(push-code! `(truncate-values ,(length vars) ,(if rest 1 0))))
((<glil-unbind>)
(close-binding!))