| Commit message (Expand) | Author | Age | Files | Lines |
... | |
| * | * configure: Support a gen-gc configuration variable which | Kaz Kylheku | 2012-04-03 | 12 | -58/+195 |
| * | * lib.c (vec_set_length): Use set instead of assignment. | Kaz Kylheku | 2012-04-02 | 3 | -3/+15 |
| * | Start of ground-work for ephemeral GC. We must add some abstraction | Kaz Kylheku | 2012-04-01 | 5 | -30/+59 |
* | | * txr.vim: @[...] syntax not marked as "contained" because it | Kaz Kylheku | 2012-04-05 | 2 | -1/+6 |
|/ |
|
* | * hash.c (last_equal_key, last_equal_hash): New static variables. | Kaz Kylheku | 2012-03-31 | 2 | -23/+58 |
* | If one of the blocks which are subordinate to a @(trailer) | Kaz Kylheku | 2012-03-31 | 5 | -11/+100 |
* | * match.c (h_var): Disallow the variable named by the symbol t | Kaz Kylheku | 2012-03-30 | 3 | -10/+45 |
* | * txr.1: Correction: backtracking does NOT take place into a block | Kaz Kylheku | 2012-03-30 | 2 | -3/+8 |
* | * txr.1: Documenting the debugger with an example session. | Kaz Kylheku | 2012-03-30 | 2 | -0/+196 |
* | Version 63txr-63 | Kaz Kylheku | 2012-03-30 | 5 | -4/+59 |
* | * lib.c (num_str): Much more accurate test for deciding whether | Kaz Kylheku | 2012-03-30 | 3 | -7/+57 |
* | * arith.c (numeq): Fix misplaced parenthesis. | Kaz Kylheku | 2012-03-29 | 2 | -1/+5 |
* | * lib.c (min2, max2): Semantics tweak. If the numbers are equal, | Kaz Kylheku | 2012-03-29 | 3 | -2/+34 |
* | * arith.c (numeq): New function. | Kaz Kylheku | 2012-03-29 | 7 | -8/+208 |
* | * arith.c (gcd): Allow zeros. Don't issue "non-integral" | Kaz Kylheku | 2012-03-29 | 6 | -3/+141 |
* | * arith.c (dmod): New static function. | Kaz Kylheku | 2012-03-29 | 3 | -7/+57 |
* | * txr.1: Documented +, - and *. | Kaz Kylheku | 2012-03-29 | 2 | -1/+73 |
* | * txr.1: num-str added to doc stub. | Kaz Kylheku | 2012-03-29 | 3 | -2/+8 |
* | * lib.c (obj_print, obj_pprint): Do not use the #<lazy-string ..> | Kaz Kylheku | 2012-03-28 | 2 | -2/+15 |
* | * stream.c (vformat): Compensate for differences in printf | Kaz Kylheku | 2012-03-27 | 3 | -6/+58 |
* | Filtering on lists and nested lists is hereby made to work. | Kaz Kylheku | 2012-03-26 | 4 | -21/+48 |
* | * match.c (v_output): Bugfix: we should flush the stream | Kaz Kylheku | 2012-03-26 | 2 | -0/+10 |
* | * eval.c (eval_init): New intrinsic num-str registered. | Kaz Kylheku | 2012-03-26 | 7 | -5/+71 |
* | * arith.c (to_float): Fix unterminated argument list in throwf. | Kaz Kylheku | 2012-03-26 | 3 | -2/+8 |
* | * lib.c (rebind_s): New symbol variable. | Kaz Kylheku | 2012-03-24 | 5 | -5/+69 |
* | Bug #35989 | Kaz Kylheku | 2012-03-24 | 2 | -1/+8 |
* | Performance improvement in the GC: keep at least one heap's worth | Kaz Kylheku | 2012-03-24 | 2 | -4/+23 |
* | * eval.c (eval_init): Register match-str and match-str-tree | Kaz Kylheku | 2012-03-24 | 5 | -0/+24 |
* | Bugfix: code like @(skip)@{var /partial/} where | Kaz Kylheku | 2012-03-24 | 2 | -11/+34 |
* | * lib.c (search_str): If start_num is nil, default it to zero. | Kaz Kylheku | 2012-03-24 | 2 | -0/+9 |
* | Version 62txr-62 | Kaz Kylheku | 2012-03-23 | 4 | -4/+14 |
* | * RELNOTES: Updated. | Kaz Kylheku | 2012-03-23 | 3 | -2/+90 |
* | * Makefile (TXR_ARGS): Pass new file to tests/009/json.txr test. | Kaz Kylheku | 2012-03-23 | 5 | -18/+130 |
* | Merge branch 'float-support' | Kaz Kylheku | 2012-03-22 | 16 | -424/+1322 |
|\ |
|
| * | * arith.c (expo): New function. | Kaz Kylheku | 2012-03-22 | 6 | -2/+21 |
| * | * eval.c (transform_op): use integerp instead of numberp. | Kaz Kylheku | 2012-03-22 | 2 | -1/+7 |
| * | * parser.l: Bugfix: was not allowing e-notation floats | Kaz Kylheku | 2012-03-22 | 3 | -21/+41 |
| * | Fix sqrt confusion. There must be a separate isqrt | Kaz Kylheku | 2012-03-22 | 6 | -16/+38 |
| * | * arith.c (floorf, ceili, sine, cosi, atang, loga): New functions. | Kaz Kylheku | 2012-03-22 | 6 | -2/+60 |
| * | * arith.c (int_flo): If sprintf produces something | Kaz Kylheku | 2012-03-22 | 3 | -0/+29 |
| * | * arith.c (to_float): New static function. | Kaz Kylheku | 2012-03-22 | 4 | -137/+197 |
| * | * arith.c (divi): New function. | Kaz Kylheku | 2012-03-21 | 6 | -2/+54 |
| * | * arith.c (mod): Floating support. | Kaz Kylheku | 2012-03-21 | 2 | -82/+107 |
| * | * arith.c (trunc): Floating support. | Kaz Kylheku | 2012-03-21 | 2 | -34/+77 |
| * | * arith.c (plus, minus, mul): Removing unnecessary type checks, | Kaz Kylheku | 2012-03-21 | 2 | -7/+5 |
| * | * txr.1: Doc stubs for new functions floatp, integerp, | Kaz Kylheku | 2012-03-21 | 3 | -3/+14 |
| * | * Makefile: link in -lm, which is needed now on some systems. | Kaz Kylheku | 2012-03-21 | 3 | -57/+97 |
| * | * arith.c (neg): Floating-point support. | Kaz Kylheku | 2012-03-21 | 4 | -31/+71 |
| * | * arith.c (plus): Minor code simplification. | Kaz Kylheku | 2012-03-21 | 3 | -61/+87 |
| * | Regression fix: 1..3 scans incorrectly into 1. .3 tokens. | Kaz Kylheku | 2012-03-20 | 2 | -3/+21 |