summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-08-24 05:48:32 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-08-24 05:48:32 -0700
commit95145297d6c1521612b69bf709f1a72879f5672a (patch)
tree90d0ff4a5d3b47d7c50c29d714e158717321a208 /eval.c
parentabd55f06d231eaa918a3ee99a17101005f751e84 (diff)
downloadtxr-95145297d6c1521612b69bf709f1a72879f5672a.tar.gz
txr-95145297d6c1521612b69bf709f1a72879f5672a.tar.bz2
txr-95145297d6c1521612b69bf709f1a72879f5672a.zip
Misleading error message in defvarl and defsymacro.
* eval.c (op_defvarl, op_defsymacro): Report correct symbol in not-bindable-symbol error message rather than reporting as let.
Diffstat (limited to 'eval.c')
-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)