fixing uses of not-a-procedure

This commit is contained in:
Danny Yoo 2012-02-18 22:45:40 -05:00
parent 11021542bf
commit 00ce581fbd

View File

@ -217,8 +217,8 @@
baselib.exceptions.raise(MACHINE,
baselib.exceptions.makeExnFailContract(
baselib.format.format(
"Not a procedure: ~e",
v),
"not a procedure: ~e",
[v]),
MACHINE.captureContinuationMarks()));
}
};
@ -248,7 +248,7 @@
fail(baselib.exceptions.makeExnFail(
baselib.format.format(
"Not a procedure: ~e",
proc),
[proc]),
MACHINE.captureContinuationMarks()));
}