| Commit message (Expand) | Author | Age | Files | Lines |
* | * eval.c (eval_init): New functions registered as intrinsics. | Kaz Kylheku | 2011-12-20 | 1 | -0/+50 |
* | * eval.c (bindings_helper): Fix format arguments. | Kaz Kylheku | 2011-12-18 | 1 | -7/+27 |
* | * lib.c (appendv): bugfix: wrong way test. | Kaz Kylheku | 2011-12-15 | 1 | -2/+2 |
* | * eval.c (eval_init): not added as synonym for null. | Kaz Kylheku | 2011-12-15 | 1 | -25/+13 |
* | * lib.c (car, cdr): Set the lazy cons function to nil | Kaz Kylheku | 2011-12-14 | 1 | -1/+2 |
* | * eval.c (eval_init): Removed registration for vec_get_fil. | Kaz Kylheku | 2011-12-14 | 1 | -38/+35 |
* | * lib.c (car, cdr): Semantics fix for lazy conses. | Kaz Kylheku | 2011-12-14 | 1 | -4/+2 |
* | * arith.c (plus, minus, gt, lt, ge, le): Handle character operands. | Kaz Kylheku | 2011-12-14 | 1 | -0/+14 |
* | * arith.c (highest_bit): Linkage changed to static. | Kaz Kylheku | 2011-12-13 | 1 | -0/+14 |
* | * arith.c (expt): New function. | Kaz Kylheku | 2011-12-12 | 1 | -1/+18 |
* | * arith.c (zerop, gt, lt, ge, le): Functions from lib.c reimplemented | Kaz Kylheku | 2011-12-11 | 1 | -32/+2 |
* | * arith.c (trunc): Error messages prefixed with trunc:. | Kaz Kylheku | 2011-12-11 | 1 | -13/+0 |
* | Bignum division implemented. More portability bugs found in MPI: | Kaz Kylheku | 2011-12-11 | 1 | -14/+0 |
* | Bignum support in mult function. | Kaz Kylheku | 2011-12-10 | 1 | -31/+0 |
* | * lib.c (mulv): Recognize cases to eliminate a wasteful mul call | Kaz Kylheku | 2011-12-10 | 1 | -1/+5 |
* | * lib.c (plusv): Recognize cases to eliminate a wasteful plus call | Kaz Kylheku | 2011-12-10 | 1 | -1/+5 |
* | * arith.c: File is now generated using TXR. | Kaz Kylheku | 2011-12-10 | 1 | -18/+0 |
* | Bignum support, here we go! | Kaz Kylheku | 2011-12-09 | 1 | -19/+51 |
* | * debug.c (debug): Fix regression: repeat last command by hitting | Kaz Kylheku | 2011-12-07 | 1 | -3/+19 |
* | * eval.c (lookup_var, lookup_fun): Reversing assoc arguments. | Kaz Kylheku | 2011-12-07 | 1 | -7/+7 |
* | * eval.c (eval_init): New functions registered as intrinsics. | Kaz Kylheku | 2011-12-07 | 1 | -0/+10 |
* | * eval.c (eval_init): New character functions registered. | Kaz Kylheku | 2011-12-07 | 1 | -2/+65 |
* | * eval.c (op_unwind_protect): Fixed uninitialized variable | Kaz Kylheku | 2011-12-06 | 1 | -1/+44 |
* | Expose lazy lists in TXR Lisp. | Kaz Kylheku | 2011-12-03 | 1 | -12/+43 |
* | * lib.c (split_str, split_str_set): Bugfix: access beyond the end of | Kaz Kylheku | 2011-12-03 | 1 | -2/+12 |
* | * lib.c (int_str): Return nil rather than 0 if no digits are extracted | Kaz Kylheku | 2011-12-01 | 1 | -1/+4 |
* | * lib.h (or2): Restore macro version of or2, because we need | Kaz Kylheku | 2011-11-30 | 1 | -0/+3 |
* | * configure (extra_debugging): New variable. EXTRA_DEBUGGING | Kaz Kylheku | 2011-11-30 | 1 | -0/+10 |
* | Adding streams functions to Lisp evaluator. | Kaz Kylheku | 2011-11-28 | 1 | -27/+29 |
* | Added evaluation support for quote and quasiquote with unquotes. | Kaz Kylheku | 2011-11-28 | 1 | -28/+73 |
* | Task #11436 | Kaz Kylheku | 2011-11-26 | 1 | -86/+485 |
* | * lib.c (getplist_f): New function. | Kaz Kylheku | 2011-11-24 | 1 | -0/+14 |
* | * lib.c (plus, minus): Fixed wrong assertion which would incorrectly | Kaz Kylheku | 2011-11-23 | 1 | -2/+2 |
* | deffilter grows in power: it can take quasistrings. | Kaz Kylheku | 2011-11-19 | 1 | -6/+35 |
* | * gc.c (mark_mem_region): Use the Valgrind API only to mark | Kaz Kylheku | 2011-11-18 | 1 | -1/+3 |
* | Added a JSON parsing test case. This flushed out a bug which crashed | Kaz Kylheku | 2011-11-18 | 1 | -0/+2 |
* | Adding quote and unquote read syntax to list forms, resembling | Kaz Kylheku | 2011-11-17 | 1 | -0/+5 |
* | Changing read syntax for character literals, because we are going to | Kaz Kylheku | 2011-11-15 | 1 | -13/+12 |
* | Infrastructure for storing line number information | Kaz Kylheku | 2011-11-12 | 1 | -3/+54 |
* | * lib.c (env): Fixed inappropriate cut-and-pasted error messages. | Kaz Kylheku | 2011-11-05 | 1 | -3/+9 |
* | Added #define NOMINMAX so <windows.h> since we have our own macros. | Kaz Kylheku | 2011-11-05 | 1 | -0/+1 |
* | Task #11442. Make work on MingW. | Kaz Kylheku | 2011-11-05 | 1 | -4/+17 |
* | Task #11442. Access to environment variables. | Kaz Kylheku | 2011-11-05 | 1 | -1/+20 |
* | Shorthand for filters which map multiple texts to a common | Kaz Kylheku | 2011-10-25 | 1 | -0/+20 |
* | Bugs #34641, #34629. | Kaz Kylheku | 2011-10-24 | 1 | -4/+13 |
* | Task #11474 | Kaz Kylheku | 2011-10-22 | 1 | -0/+36 |
* | Task #11474 | Kaz Kylheku | 2011-10-22 | 1 | -3/+40 |
* | New features. Strling list output streams in stream | Kaz Kylheku | 2011-10-21 | 1 | -0/+26 |
* | * lib.c (proper_plist_to_alist, improper_plist_to_alist): New | Kaz Kylheku | 2011-10-21 | 1 | -0/+32 |
* | Task #11425. | Kaz Kylheku | 2011-10-18 | 1 | -1/+25 |