summaryrefslogtreecommitdiffstats
path: root/parser.c
Commit message (Expand)AuthorAgeFilesLines
* Better identify functions that misuse COBJ-s and hashes.Kaz Kylheku2018-11-071-23/+28
* compiler: optimize dwim.Kaz Kylheku2018-11-041-1/+1
* listener: use temp file when saving history.Kaz Kylheku2018-11-021-2/+8
* listener: avoid unnecessary string duplication.Kaz Kylheku2018-11-021-2/+1
* repl: bugfix: abort on window size change.Kaz Kylheku2018-10-311-3/+21
* repl: allocate the "catch all" exception list once.Kaz Kylheku2018-10-311-5/+3
* compiler: use symtab caching for global lexicals.Kaz Kylheku2018-10-261-1/+1
* load: do not record source location for compiled files.Kaz Kylheku2018-06-211-1/+6
* bugfix: fatal exception on missing .txr_history.Kaz Kylheku2018-05-271-2/+10
* listener: Cygwin fix.Kaz Kylheku2018-05-181-6/+10
* linenoise: switch to wide characters, support Unicode.Kaz Kylheku2015-09-221-58/+165
* compiler: tighter code for quasiliterals.Kaz Kylheku2018-04-211-2/+2
* compiler: bump object file version.Kaz Kylheku2018-04-181-2/+2
* compile-file: need endian mark in .tlo files.Kaz Kylheku2018-04-121-1/+8
* load: fix vm gc issue.Kaz Kylheku2018-04-101-0/+1
* listener: completion: wrong use of package fallback.Kaz Kylheku2018-04-081-3/+3
* compile-file: handle gensyms and such.Kaz Kylheku2018-04-051-7/+10
* compile-file/load: add version to files.Kaz Kylheku2018-04-051-1/+9
* load: remove hack for loading compiler.tlo.Kaz Kylheku2018-04-041-2/+1
* parser: don't generate special lits outside quasiquote.Kaz Kylheku2018-04-041-0/+1
* Implement compiled file loading.Kaz Kylheku2018-04-041-7/+41
* compiler: first cut compile-file implementation.Kaz Kylheku2018-04-031-0/+3
* listener: fix poor regex handling in balance check.Kaz Kylheku2018-03-171-1/+33
* New listener feature: greedy evaluation feature.Kaz Kylheku2018-02-171-2/+16
* Copyright year bump 2018.Kaz Kylheku2018-02-151-1/+1
* New listener variable: *listener-pprint-s*.Kaz Kylheku2018-02-121-1/+6
* Use rplaca and rplacd instead of set over car_l/cdr_l.Kaz Kylheku2018-01-011-1/+1
* read, iread: source location recording now conditional.Kaz Kylheku2017-12-291-4/+20
* listener: handle incomplete buf literals.Kaz Kylheku2017-07-301-1/+23
* listener: inform linenoise of incomplete syntax.Kaz Kylheku2017-06-161-1/+151
* Refactoring hash bang support; hash bang null hack.Kaz Kylheku2017-05-301-12/+2
* cobj: rename poorly named default operation.Kaz Kylheku2017-05-151-1/+1
* listener: :p and :prompt commands.Kaz Kylheku2017-04-061-0/+8
* Connect -n option to linenoise noninteractive mode.Kaz Kylheku2017-04-041-0/+3
* listener: completion sensitive for slots and methods.Kaz Kylheku2017-03-211-8/+19
* Rename badly named default_bool_argKaz Kylheku2017-03-171-4/+4
* Better way for releasing deferred warnings.Kaz Kylheku2017-02-101-1/+1
* Bump copyright year to 2017.Kaz Kylheku2017-01-231-1/+1
* Dump deferred warnings in eval_intrinsic.Kaz Kylheku2017-01-151-2/+9
* Rebind *stderr* on entry into repl.Kaz Kylheku2017-01-151-0/+4
* Deferred warnings.Kaz Kylheku2017-01-131-3/+11
* parser: fix problems at EOF involving #; syntax.Kaz Kylheku2016-12-061-10/+29
* Expander warns about unbound variables.Kaz Kylheku2016-11-261-0/+12
* bugfix: reading hash literals with circ notation.Kaz Kylheku2016-11-231-1/+12
* Completion of fallback list implementation.Kaz Kylheku2016-11-161-2/+28
* Handle interpreted functions in circle printing.Kaz Kylheku2016-11-101-0/+7
* Implement *package* special var; package overhaul.Kaz Kylheku2016-11-081-2/+2
* New #; syntax for erasing following object.Kaz Kylheku2016-11-071-1/+1
* repl: don't send error trace to *stderr*.Kaz Kylheku2016-10-211-1/+1
* Check call graph circularity in circ_backpatch.Kaz Kylheku2016-10-201-7/+13