~ chicken-core (chicken-5) f41b8b99982c1d1874f0734d40357241ccb18b98
commit f41b8b99982c1d1874f0734d40357241ccb18b98 Author: felix <felix@call-with-current-continuation.org> AuthorDate: Fri Sep 3 06:28:29 2010 -0400 Commit: felix <felix@call-with-current-continuation.org> CommitDate: Fri Sep 3 06:28:29 2010 -0400 turned redef-of-import notice into warning diff --git a/expand.scm b/expand.scm index 56319d8e..6a16a9cd 100644 --- a/expand.scm +++ b/expand.scm @@ -1587,9 +1587,9 @@ (define (check-for-redef sym env senv) (and-let* ((a (assq sym env))) - (##sys#notice "redefinition of imported value binding" sym) ) + (##sys#warn "redefinition of imported value binding" sym) ) (and-let* ((a (assq sym senv))) - (##sys#notice "redefinition of imported syntax binding" sym))) + (##sys#warn "redefinition of imported syntax binding" sym))) (define (##sys#register-export sym mod) (when modTrap