~ chicken-core (chicken-5) 0634d339f5a1c106721bddaab3cd6ce058ba7431
commit 0634d339f5a1c106721bddaab3cd6ce058ba7431 Author: Evan Hanson <evhan@foldling.org> AuthorDate: Tue Feb 23 13:11:42 2016 +1300 Commit: Peter Bex <peter@more-magic.net> CommitDate: Tue Feb 23 20:05:10 2016 +0100 Load lolevel in compiler so that foldable bindings are present This ensures that all identifiers that are subject to constant folding are bound to procedures in the compiler so that `constant-form-eval` will work correctly. Note that the data-structures, extras, and srfi-4 units also contain foldable bindings, but these are already used by the compiler so they don't need to be added. Signed-off-by: Peter Bex <peter@more-magic.net> diff --git a/chicken.scm b/chicken.scm index 08a107b0..386d9572 100644 --- a/chicken.scm +++ b/chicken.scm @@ -27,8 +27,9 @@ (declare (uses chicken-syntax chicken-ffi-syntax - srfi-4 utils extras data-structures support - compiler optimizer lfa2 compiler-syntax scrutinizer + srfi-4 utils extras data-structures + lolevel ; unused, but loaded to make foldable bindings available + support compiler optimizer lfa2 compiler-syntax scrutinizer ;; TODO: These three need to be made configurable somehow batch-driver c-platform c-backend))Trap