| Commit message (Expand) | Author | Age | Files | Lines |
* | C++ fixes related to recent Unicode work. | Kaz Kylheku | 2018-05-18 | 1 | -3/+3 |
* | Allow Unicode characters in identifiers. | Kaz Kylheku | 2018-05-11 | 1 | -5/+46 |
* | lexer: eliminate regex alias used in one place. | Kaz Kylheku | 2018-05-11 | 1 | -3/+2 |
* | parser: duplicate package prefix in diagnostic. | Kaz Kylheku | 2018-04-10 | 1 | -2/+2 |
* | Copyright year bump 2018. | Kaz Kylheku | 2018-02-15 | 1 | -1/+1 |
* | cleanup: remove unnecessary header includes. | Kaz Kylheku | 2017-09-19 | 1 | -1/+0 |
* | parser: fix precedence of DOTDOT. | Kaz Kylheku | 2017-09-07 | 1 | -1/+1 |
* | parser: bugfix: set line number on <lineno> tokens. | Kaz Kylheku | 2017-05-18 | 1 | -0/+7 |
* | Continuing implementation of buffers. | Kaz Kylheku | 2017-04-21 | 1 | -1/+36 |
* | parser: C++ regression. | Kaz Kylheku | 2017-04-04 | 1 | -30/+30 |
* | parser: bugfix: don't scan @NUM in QSPECIAL state. | Kaz Kylheku | 2017-04-04 | 1 | -3/+6 |
* | parser: do not reject 0.1..0.2 range. | Kaz Kylheku | 2017-04-02 | 1 | -2/+1 |
* | parser: diagnose syntax like 0.1.2 and .1.1. | Kaz Kylheku | 2017-04-02 | 1 | -3/+3 |
* | Bugfix: .1 treated as dot if preceded by space. | Kaz Kylheku | 2017-04-02 | 1 | -4/+4 |
* | Package prefix handling on directive symbols. | Kaz Kylheku | 2017-03-27 | 1 | -30/+61 |
* | Lexer refactoring: special syntax tokens. | Kaz Kylheku | 2017-03-27 | 1 | -90/+43 |
* | uref: the a.b.c syntax extended to .a.b.c | Kaz Kylheku | 2017-03-06 | 1 | -1/+6 |
* | parser: diagnose run-on symbols. | Kaz Kylheku | 2017-02-01 | 1 | -0/+14 |
* | parser: diagnose more kinds of junk after float. | Kaz Kylheku | 2017-02-01 | 1 | -1/+2 |
* | Bump copyright year to 2017. | Kaz Kylheku | 2017-01-23 | 1 | -1/+1 |
* | Fix some C style casts to use casting macros. | Kaz Kylheku | 2016-12-07 | 1 | -2/+2 |
* | Removes stray debug printf from lexer. | Kaz Kylheku | 2016-12-04 | 1 | -1/+0 |
* | Harden processing of character escapes. | Kaz Kylheku | 2016-12-02 | 1 | -4/+8 |
* | Support #: reading for uninterned symbols. | Kaz Kylheku | 2016-11-07 | 1 | -4/+4 |
* | New #; syntax for erasing following object. | Kaz Kylheku | 2016-11-07 | 1 | -0/+5 |
* | Adding notation for cycles and shared structure. | Kaz Kylheku | 2016-10-18 | 1 | -0/+12 |
* | Synchronize license comments with LICENSE. | Kaz Kylheku | 2016-10-01 | 1 | -16/+17 |
* | Allow whitespace between @ and ; in comments. | Kaz Kylheku | 2016-05-23 | 1 | -2/+2 |
* | Handle non-UTF-8 byte in regex scanned from string. | Kaz Kylheku | 2016-04-21 | 1 | -0/+6 |
* | Better job of diagnosing out-of-range char escapes. | Kaz Kylheku | 2016-04-21 | 1 | -2/+9 |
* | Bugfix: allow newline in regex parsing from string. | Kaz Kylheku | 2016-04-18 | 1 | -1/+7 |
* | Trailing whitespace. | Kaz Kylheku | 2016-04-18 | 1 | -1/+1 |
* | Revamp bad character messages in lexer. | Kaz Kylheku | 2016-04-01 | 1 | -4/+15 |
* | gc bug: prepared_msg field of struct parser. | Kaz Kylheku | 2016-03-07 | 1 | -1/+2 |
* | New :mandatory keyword in until/last clauses. | Kaz Kylheku | 2016-01-15 | 1 | -5/+4 |
* | Copyright year bump. | Kaz Kylheku | 2015-12-31 | 1 | -1/+1 |
* | Implementing *print-base* and ~d format directive. | Kaz Kylheku | 2015-11-14 | 1 | -3/+3 |
* | New iread function. | Kaz Kylheku | 2015-11-07 | 1 | -0/+11 |
* | New range type, distinct from cons cell. | Kaz Kylheku | 2015-11-01 | 1 | -0/+5 |
* | Better diagnostic for cramped floating literals. | Kaz Kylheku | 2015-10-07 | 1 | -2/+7 |
* | syntax: be tolerant of carriage returns. | Kaz Kylheku | 2015-09-16 | 1 | -15/+16 |
* | Parse errors lose program prefix and parens. | Kaz Kylheku | 2015-09-06 | 1 | -2/+7 |
* | One-liner to allow @{obj.slot} in quasiliterals. | Kaz Kylheku | 2015-09-02 | 1 | -1/+1 |
* | Introducing structs. | Kaz Kylheku | 2015-09-02 | 1 | -0/+5 |
* | Allow slashes in regex passed to regex-parse. | Kaz Kylheku | 2015-08-15 | 1 | -16/+15 |
* | Floating-point constant tightening. | Kaz Kylheku | 2015-08-12 | 1 | -8/+8 |
* | Use new pushback token priming for single regex parse. | Kaz Kylheku | 2015-08-12 | 1 | -7/+10 |
* | Crafting a better parser-priming hack. | Kaz Kylheku | 2015-08-12 | 1 | -19/+31 |
* | Diagnose ambiguous floats like (a b).4 and x.y.5 | Kaz Kylheku | 2015-08-10 | 1 | -0/+30 |
* | Dot with no whitespace generates qref syntax. | Kaz Kylheku | 2015-08-10 | 1 | -0/+11 |