| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | vm: provide special case call entry points. | Kaz Kylheku | 2018-11-16 | 3 | -14/+112 |
* | vm: use faster funcall functions in vm_gcall. | Kaz Kylheku | 2018-11-16 | 1 | -15/+58 |
* | math: remove redundant type checks from NUM. | Kaz Kylheku | 2018-11-16 | 2 | -118/+122 |
* | args: remove unused macro. | Kaz Kylheku | 2018-11-14 | 1 | -4/+0 |
* | compile: handle functions that have environments. | Kaz Kylheku | 2018-11-13 | 3 | -2/+93 |
* | copy-fun: duplicate a function, with own environment. | Kaz Kylheku | 2018-11-13 | 7 | -0/+97 |
* | regex: relocate unlikely case after other tests. | Kaz Kylheku | 2018-11-12 | 1 | -3/+3 |
* | doc: corrections under Referencing Dot | Kaz Kylheku | 2018-11-11 | 1 | -6/+9 |
* | doc: changes to intro | Kaz Kylheku | 2018-11-11 | 1 | -27/+39 |
* | doc: listener suspend doesn't "depend" on job control | Kaz Kylheku | 2018-11-11 | 1 | -2/+6 |
* | doc: listener: remove irrelvant historic notes | Kaz Kylheku | 2018-11-11 | 1 | -9/+2 |
* | doc: fixes under Null Hack description. | Kaz Kylheku | 2018-11-11 | 1 | -9/+11 |
* | POSIX requires <sys/select.h> for select function. | Kaz Kylheku | 2018-11-09 | 2 | -0/+27 |
* | gethash_l: C99 fix for Solaris.txr-201 | Kaz Kylheku | 2018-11-07 | 1 | -1/+1 |
* | Version 201. | Kaz Kylheku | 2018-11-07 | 6 | -984/+1014 |
* | Better identify functions that misuse COBJ-s and hashes. | Kaz Kylheku | 2018-11-07 | 20 | -300/+445 |
* | lib: remove unused type checking functions. | Kaz Kylheku | 2018-11-07 | 2 | -19/+0 |
* | Fix wrong uses of ~s for function name string. | Kaz Kylheku | 2018-11-07 | 4 | -18/+18 |
* | type_check: take function name arg. | Kaz Kylheku | 2018-11-07 | 6 | -56/+60 |
* | symbol_needs_prefix: take function name argument. | Kaz Kylheku | 2018-11-07 | 2 | -4/+4 |
* | lazy strings: remove two type checks. | Kaz Kylheku | 2018-11-07 | 1 | -2/+0 |
* | math: improve error diagnosis. | Kaz Kylheku | 2018-11-07 | 6 | -123/+198 |
* | lib: use type switch in some string functions. | Kaz Kylheku | 2018-11-06 | 1 | -79/+67 |
* | gc: eliminate most uses of gc_mutated. | Kaz Kylheku | 2018-11-06 | 6 | -17/+20 |
* | doc: load: document hash bang treatment. | Kaz Kylheku | 2018-11-06 | 1 | -0/+8 |
* | vim: colorize hash bang for Lisp. | Kaz Kylheku | 2018-11-06 | 1 | -1/+2 |
* | doc: split/split*: formatting of syntax | Kaz Kylheku | 2018-11-06 | 1 | -2/+2 |
* | load: tolerate hash bang files. | Kaz Kylheku | 2018-11-05 | 1 | -0/+3 |
* | bugfix: error on empty script file. | Kaz Kylheku | 2018-11-05 | 1 | -8/+12 |
* | compiler: bugfix: handle defpackage and such properly. | Kaz Kylheku | 2018-11-05 | 3 | -7/+104 |
* | Version 200.txr-200 | Kaz Kylheku | 2018-11-05 | 7 | -1006/+1054 |
* | buffers: implement copy-buf. | Kaz Kylheku | 2018-11-04 | 4 | -0/+34 |
* | compiler: optimize dwim. | Kaz Kylheku | 2018-11-04 | 6 | -24/+136 |
* | The code expander becomes a public API. | Kaz Kylheku | 2018-11-02 | 7 | -29/+318 |
* | doc: lexical-fun-p: mistake in code example. | Kaz Kylheku | 2018-11-02 | 1 | -2/+2 |
* | listener: use temp file when saving history. | Kaz Kylheku | 2018-11-02 | 1 | -2/+8 |
* | listener: avoid unnecessary string duplication. | Kaz Kylheku | 2018-11-02 | 1 | -2/+1 |
* | linenoise: use move_cursor in movement operations. | Kaz Kylheku | 2018-11-01 | 1 | -36/+23 |
* | linenoise: check for null move in move_cursor. | Kaz Kylheku | 2018-11-01 | 1 | -0/+3 |
* | linenoise: small move_cursor bugfix. | Kaz Kylheku | 2018-11-01 | 1 | -0/+1 |
* | linenoise: fix use of int for wide char. | Kaz Kylheku | 2018-11-01 | 1 | -1/+1 |
* | linenoise: avoid refresh in paren matching. | Kaz Kylheku | 2018-11-01 | 1 | -4/+51 |
* | linenoise: avoid refresh for new text in multi-line mode. | Kaz Kylheku | 2018-11-01 | 1 | -3/+9 |
* | linenoise: clear need_refresh in refresh_line. | Kaz Kylheku | 2018-11-01 | 1 | -3/+3 |
* | linenoise: move modulo operation into function. | Kaz Kylheku | 2018-11-01 | 1 | -3/+3 |
* | linenoise: guard against setting cols to zero. | Kaz Kylheku | 2018-11-01 | 1 | -1/+1 |
* | linenoise: improve efficiency of warning flash. | Kaz Kylheku | 2018-11-01 | 1 | -12/+20 |
* | repl: bugfix: slow paste into terminal window. | Kaz Kylheku | 2018-11-01 | 1 | -1/+3 |
* | repl: bugfix: abort on window size change. | Kaz Kylheku | 2018-10-31 | 1 | -3/+21 |
* | repl: allocate the "catch all" exception list once. | Kaz Kylheku | 2018-10-31 | 1 | -5/+3 |