| Commit message (Expand) | Author | Age | Files | Lines |
* | Close source files after parsing. | Kaz Kylheku | 2016-04-15 | 1 | -1/+4 |
* | Replace all stray C style casts with macros. | Kaz Kylheku | 2016-03-29 | 1 | -2/+2 |
* | Header file cleanup. | Kaz Kylheku | 2016-01-22 | 1 | -3/+0 |
* | Pastes produced using :read are now numbered. | Kaz Kylheku | 2016-01-13 | 1 | -4/+6 |
* | New internal function scat: variable arg cat_str. | Kaz Kylheku | 2016-01-10 | 1 | -3/+3 |
* | Copyright year bump. | Kaz Kylheku | 2015-12-31 | 1 | -1/+1 |
* | Fix regression in tab completion. | Kaz Kylheku | 2015-12-30 | 1 | -1/+1 |
* | Error reports trace through layers of macroexpansion. | Kaz Kylheku | 2015-11-28 | 1 | -25/+2 |
* | Report chain of macro-expansions in errors. | Kaz Kylheku | 2015-11-25 | 1 | -3/+12 |
* | Implementing *print-base* and ~d format directive. | Kaz Kylheku | 2015-11-14 | 1 | -3/+3 |
* | New iread function. | Kaz Kylheku | 2015-11-07 | 1 | -3/+27 |
* | Fix *listener-hist-len* in ~/.txr_profile not working. | Kaz Kylheku | 2015-10-27 | 1 | -3/+5 |
* | Stop using C library setjmp/longjmp. | Kaz Kylheku | 2015-10-25 | 1 | -1/+0 |
* | Bugfix: unterminated format argument list in repl code. | Kaz Kylheku | 2015-10-18 | 1 | -1/+1 |
* | New way of handling exceptions without unwinding. | Kaz Kylheku | 2015-10-14 | 1 | -1/+3 |
* | Interactive listener: substring completion. | Kaz Kylheku | 2015-10-03 | 1 | -1/+4 |
* | Treat .( and (( context in completion. | Kaz Kylheku | 2015-09-27 | 1 | -1/+3 |
* | Fix race in ~/.txr_profile security check. | Kaz Kylheku | 2015-09-23 | 1 | -8/+8 |
* | repl: give details about source of error exception. | Kaz Kylheku | 2015-09-23 | 1 | -0/+10 |
* | Atom insert feature. | Kaz Kylheku | 2015-09-18 | 1 | -0/+39 |
* | Set the tempfile suffix. | Kaz Kylheku | 2015-09-18 | 1 | -0/+1 |
* | Improved ~/.txr_profile checks, with security. | Kaz Kylheku | 2015-09-18 | 1 | -6/+15 |
* | Change how error locations are reported in REPL. | Kaz Kylheku | 2015-09-17 | 1 | -2/+2 |
* | Whitespace fix. | Kaz Kylheku | 2015-09-17 | 1 | -1/+1 |
* | Listener configuration variables. | Kaz Kylheku | 2015-09-17 | 1 | -0/+12 |
* | Implement ~/.txr_profile mechanism. | Kaz Kylheku | 2015-09-13 | 1 | -0/+34 |
* | Don't supply trivial completion which matches prefix. | Kaz Kylheku | 2015-09-13 | 1 | -0/+3 |
* | Treat comment lines in repl, and plug memory leak. | Kaz Kylheku | 2015-09-11 | 1 | -2/+14 |
* | New :read command in repl for direct stdin parse. | Kaz Kylheku | 2015-09-11 | 1 | -1/+23 |
* | Better EOF check in read-eval stream function. | Kaz Kylheku | 2015-09-11 | 1 | -1/+10 |
* | Quit if input form is :quit not its value. | Kaz Kylheku | 2015-09-11 | 1 | -2/+2 |
* | Don't pass char to <ctype.h> function. | Kaz Kylheku | 2015-09-10 | 1 | -2/+4 |
* | Completion doesn't iterate over all packages. | Kaz Kylheku | 2015-09-10 | 1 | -10/+3 |
* | No completion on symbol in nonexistent package. | Kaz Kylheku | 2015-09-10 | 1 | -0/+2 |
* | C++: need conversions in return value from alloca. | Kaz Kylheku | 2015-09-09 | 1 | -2/+2 |
* | C++: avoid the compl identifier. | Kaz Kylheku | 2015-09-09 | 1 | -5/+5 |
* | alloca needs to be declared. | Kaz Kylheku | 2015-09-09 | 1 | -0/+1 |
* | Refinement in linenoise eof/intr handling. | Kaz Kylheku | 2015-09-08 | 1 | -3/+10 |
* | Bugfix: underrun on empty line tab completion. | Kaz Kylheku | 2015-09-08 | 1 | -1/+4 |
* | Load and save repl history. | Kaz Kylheku | 2015-09-07 | 1 | -0/+14 |
* | Print exceptions with proper indenting. | Kaz Kylheku | 2015-09-07 | 1 | -9/+7 |
* | Better message for caught exceptions. | Kaz Kylheku | 2015-09-07 | 1 | -1/+1 |
* | Store exception in repl variable. | Kaz Kylheku | 2015-09-07 | 1 | -2/+3 |
* | Reset flex scanner if exception thrown during read. | Kaz Kylheku | 2015-09-06 | 1 | -1/+22 |
* | Repl will print something for syntax error exceptions. | Kaz Kylheku | 2015-09-06 | 1 | -1/+1 |
* | Allow evaluation from repl to be interrupted. | Kaz Kylheku | 2015-09-06 | 1 | -0/+7 |
* | Distinguish interrupt indication from linenoise. | Kaz Kylheku | 2015-09-06 | 1 | -2/+6 |
* | Distinguish exceptions from results in repl. | Kaz Kylheku | 2015-09-06 | 1 | -0/+1 |
* | Erroneous lines must go into history also. | Kaz Kylheku | 2015-09-06 | 1 | -4/+8 |
* | repl suppresses syntax error exceptions | Kaz Kylheku | 2015-09-06 | 1 | -1/+3 |