~ chicken-core (chicken-5) 92b91cd41ad1488d475a0c5e0b3b269cee56162f
commit 92b91cd41ad1488d475a0c5e0b3b269cee56162f Author: felix <felix@call-with-current-continuation.org> AuthorDate: Thu Aug 19 05:52:58 2010 -0400 Commit: felix <felix@call-with-current-continuation.org> CommitDate: Thu Aug 19 05:52:58 2010 -0400 scrutinizer message diff --git a/scrutinizer.scm b/scrutinizer.scm index 85f9fa39..6d758f6b 100644 --- a/scrutinizer.scm +++ b/scrutinizer.scm @@ -89,12 +89,12 @@ ((eq? a 'deprecated) (report loc - (sprintf "use of deprecated library procedure `~a'" id) ) + (sprintf "use of deprecated toplevel identifier `~a'" id) ) '*) ((and (pair? a) (eq? (car a) 'deprecated)) (report loc - (sprintf "use of deprecated library procedure `~a' - consider using `~a' instead" + (sprintf "use of deprecated library toplevel identifier `~a' - consider using `~a' instead" id (cadr a))) '*) (else (list a)))))Trap