diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-02-15 00:51:30 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-02-15 00:51:30 -0800 |
commit | 161cb223ab5ff9a6e1b42de021d4b99ce3b53701 (patch) | |
tree | 3fbc5f7b6c20e63cb52d4006e85e265014dfe832 | |
parent | 3b64319b10196425401d4d71f7ee1273e3bffe32 (diff) | |
download | txr-161cb223ab5ff9a6e1b42de021d4b99ce3b53701.tar.gz txr-161cb223ab5ff9a6e1b42de021d4b99ce3b53701.tar.bz2 txr-161cb223ab5ff9a6e1b42de021d4b99ce3b53701.zip |
* eval.c (bindings_helper): Fixed misspelling of "symbol" in exception
message.
-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); } |