guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 01/01: Fix typo in CPS conversion.


From: Mark H. Weaver
Subject: [Guile-commits] 01/01: Fix typo in CPS conversion.
Date: Tue, 06 Oct 2015 14:12:35 +0000

mhw pushed a commit to branch master
in repository guile.

commit 315adb6347c3e51f4e24fa32ff08458f2aa1b09c
Author: Mark H Weaver <address@hidden>
Date:   Tue Oct 6 10:09:12 2015 -0400

    Fix typo in CPS conversion.
    
    Fixes <http://bugs.gnu.org/21614>.
    Reported by tantalum <address@hidden>.
    
    * module/language/tree-il/compile-cps.scm (convert): Add missing 'cps'
      argument to the continuation passed to 'convert-arg'.
---
 module/language/tree-il/compile-cps.scm |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/module/language/tree-il/compile-cps.scm 
b/module/language/tree-il/compile-cps.scm
index 59d2d7d..7f34e6b 100644
--- a/module/language/tree-il/compile-cps.scm
+++ b/module/language/tree-il/compile-cps.scm
@@ -460,7 +460,7 @@
 
     (($ <module-set> src mod name public? exp)
      (convert-arg cps exp
-       (lambda (val)
+       (lambda (cps val)
          (module-box
           cps src mod name public? #t
           (lambda (cps box)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]