diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2011-12-05 09:14:05 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2011-12-05 09:14:05 -0800 |
commit | 601a5312b0b65e519584888a0f861190959516d3 (patch) | |
tree | e222266538c44850cad63fa86703b6dc1b826f49 /lib.h | |
parent | 7fa8698dbec1812d13d8d7a1f323329baa9a10c4 (diff) | |
download | txr-601a5312b0b65e519584888a0f861190959516d3.tar.gz txr-601a5312b0b65e519584888a0f861190959516d3.tar.bz2 txr-601a5312b0b65e519584888a0f861190959516d3.zip |
* eval.c (op_cond): Fixed behavior for singleton clauses.
(eval_init): Use existing function objects car_f, cdr_f,
eq_f, eql_f and equal_f. Added identity to function table.
* lib.h (eql_f): Missing declaration added.
* txr.1: Documented cond, and, if, or, defun, inc, dec,
set, push and pop.
Diffstat (limited to 'lib.h')
-rw-r--r-- | lib.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -282,7 +282,7 @@ extern val nothrow_k, args_k; extern val null_string; extern val null_list; /* (nil) */ -extern val identity_f, equal_f, eq_f, car_f, cdr_f; +extern val identity_f, equal_f, eql_f, eq_f, car_f, cdr_f; extern const wchar_t *progname; extern val prog_string; |