~ chicken-core (chicken-5) e964a0d93989ebebd25c09e3a67755b191582c7a
commit e964a0d93989ebebd25c09e3a67755b191582c7a
Author: felix <felix@call-with-current-continuation.org>
AuthorDate: Fri Nov 26 14:41:18 2010 +0100
Commit: felix <felix@call-with-current-continuation.org>
CommitDate: Fri Nov 26 14:44:33 2010 +0100
better warning message in compiler
diff --git a/compiler.scm b/compiler.scm
old mode 100644
new mode 100755
index 90fd2dbc..e0cef04a
--- a/compiler.scm
+++ b/compiler.scm
@@ -2117,7 +2117,7 @@
(walk node)
(when (pair? procs)
(##sys#notice
- "access to the following non-intrinsic global procedures was declared to be unsafe even though they are externally visible:")
+ "calls to the following non-intrinsic global procedures were declared to be unsafe even though they are externally visible:")
(newline (current-error-port))
(for-each (cute fprintf (current-error-port) " ~S~%" <>) procs)
(flush-output (current-error-port))))))
Trap