diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-08-24 06:55:45 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-08-24 06:55:45 -0700 |
commit | 3005bda72a3eb14fc94225c3fd399cec98443a1c (patch) | |
tree | e4d2682c50d1382da9a1cab35c9ee787dad15feb /eval.c | |
parent | b971254b74e21e42fd0b856a815fff0a2734a87c (diff) | |
download | txr-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.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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); |