Fixed 'reference to an identifier before its definition' error in *SL.

This commit is contained in:
Guillaume Marceau 2011-09-17 22:37:45 -04:00
parent 14014b3d36
commit 9b49de16e7

View File

@ -58,6 +58,8 @@
(list #rx"procedure application: expected procedure, given: (.*); arguments were:.*"
(lambda (all one)
(format "function call: expected a function after the open parenthesis, but received ~a" one)))
(list #rx"reference to an identifier before its definition: (.*)"
(lambda (all one) (format "~a is used here before its definition" one)))
(list #rx"expects argument of type (<([^>]+)>)"
(lambda (all one two) (format "expects a ~a" two)))
(list #rx"expected argument of type (<([^>]+)>)"