~ chicken-core (chicken-5) 60a0aa1f55a7316d3fe2603abee3c9578f6eeb30


commit 60a0aa1f55a7316d3fe2603abee3c9578f6eeb30
Author:     felix <felix@call-with-current-continuation.org>
AuthorDate: Sat Sep 13 23:37:22 2014 +0200
Commit:     felix <felix@call-with-current-continuation.org>
CommitDate: Sat Sep 13 23:37:22 2014 +0200

    Use correct module prefix for call of "process-declaration" in eval.scm

diff --git a/eval.scm b/eval.scm
index 1066e71d..f8779ccc 100644
--- a/eval.scm
+++ b/eval.scm
@@ -721,7 +721,7 @@
 			 [(##core#declare)
 			  (if (memq #:compiling ##sys#features)
 			      ;; XXX FIXME: This is a bit of a hack.  Why is it needed at all?
-			      (for-each (lambda (d) (compiler#process-declaration d se)) (cdr x)) 
+			      (for-each (lambda (d) (chicken.compiler.core#process-declaration d se)) (cdr x)) 
 			      (##sys#notice
 			       "declarations are ignored in interpreted code"
 			       x) )
Trap