| Commit message (Expand) | Author | Age | Files | Lines |
* | Regex printing not escaping [ and ]. | Kaz Kylheku | 2016-01-12 | 1 | -1/+2 |
* | Print control chars in regexes using \x. | Kaz Kylheku | 2016-01-12 | 3 | -54/+72 |
* | Pretty-print DEL and U+DCxx str char using \xHEX. | Kaz Kylheku | 2016-01-12 | 1 | -1/+1 |
* | regex_print: [ and ] in char class must be escaped. | Kaz Kylheku | 2016-01-12 | 1 | -1/+1 |
* | Remove redundant assert in mem allocation functions. | Kaz Kylheku | 2016-01-10 | 1 | -3/+0 |
* | Reduce scope of variable in cat_str. | Kaz Kylheku | 2016-01-10 | 1 | -2/+2 |
* | New internal function scat: variable arg cat_str. | Kaz Kylheku | 2016-01-10 | 4 | -7/+88 |
* | GC-correct order in copy_lazy_str. | Kaz Kylheku | 2016-01-10 | 1 | -2/+2 |
* | Don't record form as its own macro origin. | Kaz Kylheku | 2016-01-09 | 1 | -2/+2 |
* | Rework lazy string optimization done in TXR 118. | Kaz Kylheku | 2016-01-09 | 1 | -26/+10 |
* | Use struct instead of cons for lazy string fields. | Kaz Kylheku | 2016-01-09 | 3 | -20/+37 |
* | New internal function for copying malloced object. | Kaz Kylheku | 2016-01-09 | 2 | -0/+9 |
* | Squash compiler complaint about _BSD_SOURCE. | Kaz Kylheku | 2016-01-08 | 1 | -1/+1 |
* | Fix Valgrind integration breakage. | Kaz Kylheku | 2016-01-07 | 1 | -1/+1 |
* | Version 130.txr-130 | Kaz Kylheku | 2016-01-05 | 6 | -324/+372 |
* | Bad formatting under data directive. | Kaz Kylheku | 2016-01-05 | 1 | -1/+1 |
* | Clarify same-sequence semantics of swap, rotate, shift. | Kaz Kylheku | 2016-01-04 | 1 | -0/+42 |
* | Static slots mustn't trigger instantiation. | Kaz Kylheku | 2016-01-04 | 1 | -2/+3 |
* | Revert chr-isdigit/isxdigit, provide new functions. | Kaz Kylheku | 2016-01-04 | 4 | -8/+32 |
* | defstruct: order function slots before other static slots. | Kaz Kylheku | 2016-01-03 | 2 | -15/+48 |
* | Better bad slot syntax diagnostic in defstruct. | Kaz Kylheku | 2016-01-03 | 1 | -1/+4 |
* | Bad formatting under destruct. | Kaz Kylheku | 2016-01-02 | 1 | -1/+1 |
* | Bad formatting under Ranges | Kaz Kylheku | 2016-01-02 | 1 | -0/+3 |
* | Wording change in error_trace. | Kaz Kylheku | 2016-01-02 | 1 | -2/+2 |
* | Use last-form-evaled mechanism for pattern language. | Kaz Kylheku | 2016-01-02 | 3 | -6/+20 |
* | Bugfix: premature open of data source. | Kaz Kylheku | 2016-01-01 | 1 | -1/+1 |
* | Handle nothrow semantics down in complex_open. | Kaz Kylheku | 2016-01-01 | 1 | -37/+12 |
* | Hacky struct fpip gone; complex_open returns stream. | Kaz Kylheku | 2016-01-01 | 1 | -74/+26 |
* | Record-delimiting stream adapter. | Kaz Kylheku | 2016-01-01 | 5 | -0/+313 |
* | Copyright year bump. | Kaz Kylheku | 2015-12-31 | 71 | -72/+72 |
* | linenoise: submit and stay in history. | Kaz Kylheku | 2015-12-31 | 2 | -0/+33 |
* | linenoise: bugfix: Ctrl-X bails out of hist search | Kaz Kylheku | 2015-12-31 | 1 | -1/+1 |
* | C++ breakage: multiple definition of name_s. | Kaz Kylheku | 2015-12-30 | 4 | -6/+5 |
* | Fix regression in tab completion. | Kaz Kylheku | 2015-12-30 | 3 | -2/+3 |
* | Version 129.txr-129 | Kaz Kylheku | 2015-12-29 | 6 | -361/+482 |
* | last_form_evaled must track argument evaluation. | Kaz Kylheku | 2015-12-29 | 1 | -4/+3 |
* | Propagate macro ancestry info across macrolet. | Kaz Kylheku | 2015-12-29 | 1 | -1/+4 |
* | Detect loop in error_trace. | Kaz Kylheku | 2015-12-29 | 1 | -0/+3 |
* | Suppress "which is located at nil". | Kaz Kylheku | 2015-12-29 | 1 | -3/+9 |
* | Don't suppress detailed error trace for eval-error. | Kaz Kylheku | 2015-12-29 | 1 | -2/+2 |
* | Don't record nil as the macro ancestor of a form. | Kaz Kylheku | 2015-12-29 | 1 | -1/+2 |
* | New variables for floating-point printing control. | Kaz Kylheku | 2015-12-28 | 4 | -19/+92 |
* | Whitespace in lazy_str_force. | Kaz Kylheku | 2015-12-28 | 1 | -1/+1 |
* | Overhaul printing of lazy strings. | Kaz Kylheku | 2015-12-28 | 3 | -56/+123 |
* | Fix exception in @(freeform) over interactive input. | Kaz Kylheku | 2015-12-27 | 1 | -1/+6 |
* | Adding with-slots macro. | Kaz Kylheku | 2015-12-27 | 3 | -0/+98 |
* | Use subtype check for eval error. | Kaz Kylheku | 2015-12-27 | 1 | -1/+1 |
* | Shocking four-year-old bug in collect/coll. | Kaz Kylheku | 2015-12-27 | 1 | -2/+7 |
* | Allow @(repeat) and @(rep) to see Lisp globals. | Kaz Kylheku | 2015-12-26 | 1 | -0/+11 |
* | TXR quasiliterals and output vars treated as Lisp. | Kaz Kylheku | 2015-12-26 | 6 | -174/+209 |