| Commit message (Expand) | Author | Age | Files | Lines |
* | Use vargs typedef instead of struct args *. | Kaz Kylheku | 2023-09-05 | 1 | -1/+1 |
* | listener: auto compound expression mode. | Kaz Kylheku | 2023-08-14 | 1 | -2/+9 |
* | listener: change *listener-sel-inclusive-p* default. | Kaz Kylheku | 2023-08-13 | 1 | -1/+1 |
* | eval: take macro environment. | Kaz Kylheku | 2023-06-27 | 1 | -3/+3 |
* | listener: process multiple expressions | Kaz Kylheku | 2023-06-02 | 1 | -2/+3 |
* | command line: -e takes multiple forms. | Kaz Kylheku | 2023-05-30 | 1 | -0/+25 |
* | bugfix: gc issue in parser interface. | Kaz Kylheku | 2023-01-22 | 1 | -0/+2 |
* | Copyright year bump 2023. | Kaz Kylheku | 2023-01-01 | 1 | -1/+1 |
* | listener: drop security checks on windows. | Kaz Kylheku | 2022-10-27 | 1 | -1/+14 |
* | listener: bug: history ignored if .txr_profile doesn't exist. | Kaz Kylheku | 2022-08-09 | 1 | -1/+1 |
* | load: fix misleading error message. | Kaz Kylheku | 2022-08-09 | 1 | -1/+1 |
* | repl: revise security checks. | Kaz Kylheku | 2022-07-26 | 1 | -27/+28 |
* | bugfix: missing gzip support in open-command. | Kaz Kylheku | 2022-06-21 | 1 | -1/+1 |
* | listener: bugfix: handle warnings around linenoise. | Kaz Kylheku | 2022-06-08 | 1 | -0/+4 |
* | build: fix broken build when we don't HAVE_ZLIB. | Kaz Kylheku | 2022-05-31 | 1 | -0/+19 |
* | load: support .tlo.gz files. | Kaz Kylheku | 2022-05-27 | 1 | -9/+38 |
* | New: load can search multiple directories. | Kaz Kylheku | 2022-04-25 | 1 | -5/+21 |
* | open_txr_file: rename parameters. | Kaz Kylheku | 2022-04-24 | 1 | -18/+18 |
* | loading: bugfix: try specified path before suffixes. | Kaz Kylheku | 2022-03-31 | 1 | -21/+27 |
* | listener: restore and improve method completion. | Kaz Kylheku | 2022-02-19 | 1 | -3/+7 |
* | load: support loading catenated .tlo files. | Kaz Kylheku | 2022-02-13 | 1 | -13/+20 |
* | Use null_string throughout code base. | Kaz Kylheku | 2022-02-05 | 1 | -3/+4 |
* | listener: line_w must be volatile now. | Kaz Kylheku | 2022-01-28 | 1 | -1/+1 |
* | listener: handle Ctrl-C interrupts from linenoise. | Kaz Kylheku | 2022-01-28 | 1 | -11/+14 |
* | Copyright year bump 2022. | Kaz Kylheku | 2022-01-11 | 1 | -1/+1 |
* | Casts have crept into the code not wrapped by macros. | Kaz Kylheku | 2022-01-06 | 1 | -1/+1 |
* | Eliminate declaration-after-statement everywhere. | Kaz Kylheku | 2021-12-29 | 1 | -2/+3 |
* | tree: support for duplicate keys. | Kaz Kylheku | 2021-12-17 | 1 | -1/+1 |
* | repl: bugfix: half-baked source auto loading in completion. | Kaz Kylheku | 2021-10-25 | 1 | -5/+6 |
* | exceptions: hack to store errno in string object. | Kaz Kylheku | 2021-09-07 | 1 | -2/+2 |
* | lookup_var: don't pass dyn_env explicitly. | Kaz Kylheku | 2021-09-03 | 1 | -2/+2 |
* | configure: implement full-repl option. | Kaz Kylheku | 2021-08-20 | 1 | -8/+8 |
* | listener: additional reductions in non-termios build. | Kaz Kylheku | 2021-08-20 | 1 | -0/+12 |
* | listener: unbundle from termios. | Kaz Kylheku | 2021-08-20 | 1 | -6/+7 |
* | license: reformat to fit 80 columns. | Kaz Kylheku | 2021-08-16 | 1 | -12/+13 |
* | listener: prompt feature for plain mode. | Kaz Kylheku | 2021-08-03 | 1 | -0/+4 |
* | parser: allow trailing commas in json, via opt-in flag. | Kaz Kylheku | 2021-07-29 | 1 | -1/+5 |
* | hash: change make_hash interface. | Kaz Kylheku | 2021-07-22 | 1 | -3/+3 |
* | hash: support both semantics of weak keys + values. | Kaz Kylheku | 2021-07-21 | 1 | -7/+1 |
* | parse/eval: use weak-both hash tables. | Kaz Kylheku | 2021-07-20 | 1 | -1/+7 |
* | type: disallow structs using built-in type names. | Kaz Kylheku | 2021-07-08 | 1 | -6/+15 |
* | streams: tightening sloppy argument defaulting. | Kaz Kylheku | 2021-07-01 | 1 | -23/+18 |
* | byacc: fix regression caused by yystype. | Kaz Kylheku | 2021-06-26 | 1 | -1/+1 |
* | c_str now takes a self argument. | Kaz Kylheku | 2021-06-23 | 1 | -13/+15 |
* | read/get-json: reject trailing junk in string input. | Kaz Kylheku | 2021-06-20 | 1 | -2/+16 |
* | listener: new --noprofile option. | Kaz Kylheku | 2021-06-16 | 1 | -1/+1 |
* | listener: complete macros and operators after quote. | Kaz Kylheku | 2021-06-10 | 1 | -6/+11 |
* | parser: new *read-unknown-structs* variable. | Kaz Kylheku | 2021-06-08 | 1 | -1/+5 |
* | parser: gc bug in token. | Kaz Kylheku | 2021-05-31 | 1 | -0/+2 |
* | repl: syntax error diag improvement. | Kaz Kylheku | 2021-05-29 | 1 | -1/+1 |