summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval.c b/eval.c
index c7578c01..cfc1f32c 100644
--- a/eval.c
+++ b/eval.c
@@ -1164,7 +1164,7 @@ static val do_eval(val form, val env, val ctx,
val fbinding = lookup_fun(env, oper);
if (!fbinding) {
last_form_evaled = form;
- eval_error(form, lit("no such function or operator: ~s"), oper, nao);
+ eval_error(form, lit("~s does not name a function or operator"), oper, nao);
abort();
} else {
val arglist = rest(form);