summaryrefslogtreecommitdiffstats
path: root/parser.c
Commit message (Expand)AuthorAgeFilesLines
...
* Completion doesn't iterate over all packages.Kaz Kylheku2015-09-101-10/+3
* No completion on symbol in nonexistent package.Kaz Kylheku2015-09-101-0/+2
* C++: need conversions in return value from alloca.Kaz Kylheku2015-09-091-2/+2
* C++: avoid the compl identifier.Kaz Kylheku2015-09-091-5/+5
* alloca needs to be declared.Kaz Kylheku2015-09-091-0/+1
* Refinement in linenoise eof/intr handling.Kaz Kylheku2015-09-081-3/+10
* Bugfix: underrun on empty line tab completion.Kaz Kylheku2015-09-081-1/+4
* Load and save repl history.Kaz Kylheku2015-09-071-0/+14
* Print exceptions with proper indenting.Kaz Kylheku2015-09-071-9/+7
* Better message for caught exceptions.Kaz Kylheku2015-09-071-1/+1
* Store exception in repl variable.Kaz Kylheku2015-09-071-2/+3
* Reset flex scanner if exception thrown during read.Kaz Kylheku2015-09-061-1/+22
* Repl will print something for syntax error exceptions.Kaz Kylheku2015-09-061-1/+1
* Allow evaluation from repl to be interrupted.Kaz Kylheku2015-09-061-0/+7
* Distinguish interrupt indication from linenoise.Kaz Kylheku2015-09-061-2/+6
* Distinguish exceptions from results in repl.Kaz Kylheku2015-09-061-0/+1
* Erroneous lines must go into history also.Kaz Kylheku2015-09-061-4/+8
* repl suppresses syntax error exceptionsKaz Kylheku2015-09-061-1/+3
* Parenthesis sensitivity for completion.Kaz Kylheku2015-09-061-4/+23
* linenoise completion for txr symbolsKaz Kylheku2015-09-051-0/+114
* Syntax errors refer to REPL line number.Kaz Kylheku2015-09-051-3/+9
* Numbered prompt with backreferencing.Kaz Kylheku2015-09-051-1/+15
* Basic REPL based on linenoise.Kaz Kylheku2015-09-051-0/+82
* Remove useless member from parser structure.Kaz Kylheku2015-08-191-2/+3
* Fix parser bug caused by wrong kind of weak hash table.Kaz Kylheku2015-08-191-1/+1
* Provide conservative marking interface.Kaz Kylheku2015-08-191-4/+1
* Improvement in hash bang code.Kaz Kylheku2015-08-121-6/+3
* Use new pushback token priming for single regex parse.Kaz Kylheku2015-08-121-9/+21
* Crafting a better parser-priming hack.Kaz Kylheku2015-08-121-16/+33
* Diagnose bad consing dot syntax like (a . b . c).Kaz Kylheku2015-08-101-1/+3
* * parser.c (open_txr_file): Bugfix: the name of the parsedKaz Kylheku2015-07-131-1/+1
* Handle setting of parse name through prime_parser.Kaz Kylheku2015-07-101-3/+4
* Fix wrong name reported for errors in first top-level form.Kaz Kylheku2015-07-101-1/+2
* Fix off by one error line numbers for .tl files.Kaz Kylheku2015-07-101-3/+7
* Remove unused "primer" member from parser_t.Kaz Kylheku2015-07-101-7/+4
* Bugfix: lexer loses unmatched "hold char" between top-level forms.Kaz Kylheku2015-07-101-6/+11
* Parser cleanup: embed scanner in parser.Kaz Kylheku2015-07-091-6/+26
* Hash-bang support for .tl files.Kaz Kylheku2015-07-021-1/+10
* * parser.c (parser_mark): Do not mark p->syntax_tree ifKaz Kylheku2015-06-191-1/+2
* @(load) and @(include) now load Lisp code.Kaz Kylheku2015-06-121-0/+30
* Preparing for lisp loading.Kaz Kylheku2015-06-101-7/+58
* Error handling improvement in read.Kaz Kylheku2015-06-101-4/+6
* * parser.c (stream_parser_hash): New static variable.Kaz Kylheku2015-06-071-7/+47
* * match.c (v_load): Call parse_once rater than parse.Kaz Kylheku2015-06-071-2/+2
* * Makefile (LISP_TO_C_STRING): Strip comments, but not comment lines,Kaz Kylheku2015-05-071-4/+5
* * parser.c (open_txr_file, regex_parse, lisp_parse): FunctionsKaz Kylheku2014-12-211-0/+77
* * Makefile (OBJS): Add parser.o.Kaz Kylheku2014-12-211-0/+89