summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-08-24 06:55:45 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-08-24 06:55:45 -0700
commit3005bda72a3eb14fc94225c3fd399cec98443a1c (patch)
treee4d2682c50d1382da9a1cab35c9ee787dad15feb /eval.c
parentb971254b74e21e42fd0b856a815fff0a2734a87c (diff)
downloadtxr-3005bda72a3eb14fc94225c3fd399cec98443a1c.tar.gz
txr-3005bda72a3eb14fc94225c3fd399cec98443a1c.tar.bz2
txr-3005bda72a3eb14fc94225c3fd399cec98443a1c.zip
Error on non-bindable sym in defvar and defparm.
* eval.c (me_def_variable): Check for sym not being a bindable symbol. Otherwise we might call mark_special on nil, which triggers an assertion.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/eval.c b/eval.c
index 36c07890..07d8c5cd 100644
--- a/eval.c
+++ b/eval.c
@@ -2365,6 +2365,9 @@ static val me_def_variable(val form, val menv)
if (op != defvar_s && length(args) != two)
eval_error(form, lit("~s: two arguments expected"), op, nao);
+ if (!bindable(sym))
+ eval_error(form, lit("~s: ~s is not a bindable symbol"), op, sym, nao);
+
if (op == defparm_s || op == defvar_s)
mark_special(sym);