diff --git a/module/language/cps/verify.scm b/module/language/cps/verify.scm index a39e99b8c..a52924b0b 100644 --- a/module/language/cps/verify.scm +++ b/module/language/cps/verify.scm @@ -1,6 +1,6 @@ ;;; Continuation-passing style (CPS) intermediate language (IL) -;; Copyright (C) 2013, 2014 Free Software Foundation, Inc. +;; Copyright (C) 2013, 2014, 2015 Free Software Foundation, Inc. ;;;; This library is free software; you can redistribute it and/or ;;;; modify it under the terms of the GNU Lesser General Public @@ -129,7 +129,7 @@ (match fun (($ $fun (free ...) entry) (for-each (cut check-var <> v-env) free) - (visit-entry '() v-env)) + (visit-entry entry '() v-env)) (_ (error "unexpected $fun" fun))))