summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-02-15 00:51:30 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-02-15 00:51:30 -0800
commit161cb223ab5ff9a6e1b42de021d4b99ce3b53701 (patch)
tree3fbc5f7b6c20e63cb52d4006e85e265014dfe832
parent3b64319b10196425401d4d71f7ee1273e3bffe32 (diff)
downloadtxr-161cb223ab5ff9a6e1b42de021d4b99ce3b53701.tar.gz
txr-161cb223ab5ff9a6e1b42de021d4b99ce3b53701.tar.bz2
txr-161cb223ab5ff9a6e1b42de021d4b99ce3b53701.zip
* eval.c (bindings_helper): Fixed misspelling of "symbol" in exception
message.
-rw-r--r--ChangeLog5
-rw-r--r--eval.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 92e3d13e..e62dde8c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/eval.c b/eval.c
index a79be121..d5dab8e0 100644
--- a/eval.c
+++ b/eval.c
@@ -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);
}