summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--eval.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/eval.c b/eval.c
index 78cc5a34..c5935cc1 100644
--- a/eval.c
+++ b/eval.c
@@ -1543,7 +1543,7 @@ static val op_defvarl(val form, val env)
val sym = first(args);
if (!bindable(sym))
- eval_error(form, lit("let: ~s is not a bindable symbol"), sym, nao);
+ eval_error(form, lit("defvarl: ~s is not a bindable symbol"), sym, nao);
{
if (!gethash(top_vb, sym)) {
@@ -1564,7 +1564,7 @@ static val op_defsymacro(val form, val env)
(void) env;
if (!bindable(sym))
- eval_error(form, lit("let: ~s is not a bindable symbol"), sym, nao);
+ eval_error(form, lit("defsymacro: ~s is not a bindable symbol"), sym, nao);
remhash(top_vb, sym);
if (!opt_compat || opt_compat > 143)