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