~ chicken-core (chicken-5) 2c8e10182bca50c17752e6a45cd95388b3572d5a
commit 2c8e10182bca50c17752e6a45cd95388b3572d5a Author: felix <felix@call-with-current-continuation.org> AuthorDate: Sun Jul 4 00:27:05 2010 +0200 Commit: felix <felix@call-with-current-continuation.org> CommitDate: Sun Jul 4 00:27:05 2010 +0200 trivial fix in compiler-notice for exported unsafe global procs diff --git a/compiler.scm b/compiler.scm index fd56f241..26dad504 100644 --- a/compiler.scm +++ b/compiler.scm @@ -2095,7 +2095,7 @@ (walk node) (when (pair? procs) (##sys#notice - "the following non-intrinsic global procedures where declared to be safe but are externally visible:") + "the following non-intrinsic global procedures where declared to be unsafe but are externally visible:") (newline (current-error-port)) (for-each (cute fprintf (current-error-port) " ~S~%" <>) procs) (flush-output (current-error-port))))))Trap