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 /eval.c | |
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.
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |