| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | * 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 |
| * | * arith.c (plus): Completed implementation of bignum-float | Kaz Kylheku | 2012-03-20 | 2 | -6/+11 |
| * | * stream.c (vformat): Use larger num_buf buffer so we don't | Kaz Kylheku | 2012-03-20 | 2 | -1/+6 |
| * | * arith.c (flo_int): New function. | Kaz Kylheku | 2012-03-20 | 6 | -0/+89 |
| * | * arith.c (plus): Optimization: use num_fast when | Kaz Kylheku | 2012-03-20 | 5 | -46/+164 |
| * | * parser.l (FLO): Adjusted syntax of floating point numbers | Kaz Kylheku | 2012-03-20 | 2 | -1/+6 |
| * | * stream.c (vformat): num_buf increased to 256 because we | Kaz Kylheku | 2012-03-19 | 2 | -1/+65 |
| * | * configure (uintptr): New variable. Indicates whether unsigned | Kaz Kylheku | 2012-03-19 | 9 | -17/+162 |
* | | * debug.c (debug): Breakpointing now takes into account | Kaz Kylheku | 2012-03-20 | 2 | -10/+27 |
|/ |
|
* | * eval.c (eval_init): url_decode has two parameters now, | Kaz Kylheku | 2012-03-18 | 5 | -15/+54 |
* | Changing type function to not blow up on nil, which makes a lot of code | Kaz Kylheku | 2012-03-17 | 8 | -102/+103 |
* | * filter.c (digit_value): static function moved. | Kaz Kylheku | 2012-03-17 | 2 | -14/+18 |