~ chicken-core (chicken-5) 7e2730df1ef82f666b594959b9c248df0c732206


commit 7e2730df1ef82f666b594959b9c248df0c732206
Author:     Evan Hanson <evhan@foldling.org>
AuthorDate: Fri Apr 22 11:08:06 2016 +1200
Commit:     Evan Hanson <evhan@foldling.org>
CommitDate: Fri Apr 22 11:10:37 2016 +1200

    Fix premature use of `void` when bootstrapping with chicken-5

diff --git a/common-declarations.scm b/common-declarations.scm
index fc625aca..53dbe124 100644
--- a/common-declarations.scm
+++ b/common-declarations.scm
@@ -34,7 +34,7 @@
   (er-macro-transformer
    (lambda (x r c)
      (cond-expand
-       (chicken-5 `(void))
+       (chicken-5 `(##core#undefined))
        (chicken-4 `(##core#inline_allocate ("C_a_i_provide" 8) ',(cadr x)))))))
 
 (cond-expand
Trap