[changed ex:undefined into a procedure atsmyles@verizon.net**20110409182934 Ignore-this: 438c63cbf8a20309e3ed7744047bff0f Trying to use #!unbound instead of #!void but getting numerous errors. Leaving the change so I can review better in the future. ] hunk ./compat-gambit.scm 18 -(define ex:undefined #!void) +(define (ex:undefined . ignore) #!void) hunk ./compile-libs 30 - (path-expand* "libs/rnrs/" "exceptions.scm" "conditions.scm" "base.scm" "syntax-case.scm" "control.scm" "lists.scm" "eval.scm" "records.scm" "hashtables.scm" "enumerations.scm" "arithmetic.scm" "r5rs.scm" "mutable.scm")) + (path-expand* "libs/rnrs/" "conditions.scm" "exceptions.scm" "base.scm" "syntax-case.scm" "control.scm" "lists.scm" "eval.scm" "records.scm" "hashtables.scm" "enumerations.scm" "arithmetic.scm" "r5rs.scm" "mutable.scm")) hunk ./expander.scm 1021 - ,@(map (lambda (ignore) `ex:undefined) + ,@(map ex:undefined hunk ./expander.scm 1673 - `(set! ,var ex:undefined)) + `(set! ,var (ex:undefined)))