aboutsummaryrefslogtreecommitdiff
path: root/eval.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'eval.cpp')
-rw-r--r--eval.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/eval.cpp b/eval.cpp
index dd4be00..efd1114 100644
--- a/eval.cpp
+++ b/eval.cpp
@@ -43,6 +43,9 @@ void push(Cons * &pc, FrameObj ** &top_ptr, Environment *envt) {
}
else // Operational Invocation
{
+ if (pc->car == empty_list)
+ throw NormalError(SYN_ERR_EMPTY_COMB);
+
*top_ptr++ = new RetAddr(pc); // Push the return address
// static_cast because of is_simple_obj() is false
pc = static_cast<Cons*>(pc->car); // Go deeper to enter the call