diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | eval.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,10 @@ 2014-02-15 Kaz Kylheku <kaz@kylheku.com> + * eval.c (bindings_helper): Fixed misspelling of "symbol" in exception + message. + +2014-02-15 Kaz Kylheku <kaz@kylheku.com> + A trivial change in the UTF-8 decoder allows TXR to handle null bytes in text. @@ -655,7 +655,7 @@ static val bindings_helper(val vars, val env, val sequential, val ctx_form) if (symbolp(var)) { if (!bindable(var)) - eval_error(ctx_form, lit("~s: ~s is not a bindable sybol"), + eval_error(ctx_form, lit("~s: ~s is not a bindable symbol"), car(ctx_form), var, nao); } |