| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Bugfix in regex printing: & operator. | Kaz Kylheku | 2016-09-25 | 1 | -1/+1 |
* | New regex functions: m^$, m^, m$, and others. | Kaz Kylheku | 2016-09-23 | 1 | -0/+130 |
* | Semantics change in match-regex-right. | Kaz Kylheku | 2016-09-22 | 1 | -3/+59 |
* | Fix match-regex not conforming to documentation. | Kaz Kylheku | 2016-09-22 | 1 | -3/+15 |
* | Support functional argument in regsub. | Kaz Kylheku | 2016-09-22 | 1 | -23/+41 |
* | Support negative positions in regex matching funs. | Kaz Kylheku | 2016-09-21 | 1 | -1/+9 |
* | Move regex intrinsic registrations to regex.c. | Kaz Kylheku | 2016-09-21 | 1 | -0/+14 |
* | regex: optimize double complement. | Kaz Kylheku | 2016-09-16 | 1 | -40/+46 |
* | regex: add case to complement optimization. | Kaz Kylheku | 2016-09-15 | 1 | -0/+2 |
* | regex: fix broken complement operator. | Kaz Kylheku | 2016-09-15 | 1 | -1/+3 |
* | NFA regex optimization: use just one set array. | Kaz Kylheku | 2016-07-19 | 1 | -48/+31 |
* | NFA regex optimization: combine move and closure. | Kaz Kylheku | 2016-07-19 | 1 | -37/+90 |
* | New --free-all option for freeing memory on exit. | Kaz Kylheku | 2016-06-07 | 1 | -4/+16 |
* | Some streamlining in the cons recycling. | Kaz Kylheku | 2016-05-15 | 1 | -1/+1 |
* | Recycle conses in unget-char and read-until-match. | Kaz Kylheku | 2016-04-20 | 1 | -3/+7 |
* | read-until-match can optionally keep matched text. | Kaz Kylheku | 2016-04-20 | 1 | -21/+19 |
* | Fix broken read_until_match. | Kaz Kylheku | 2016-04-19 | 1 | -17/+51 |
* | Header file cleanup. | Kaz Kylheku | 2016-01-22 | 1 | -1/+0 |
* | 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 | 1 | -53/+70 |
* | regex_print: [ and ] in char class must be escaped. | Kaz Kylheku | 2016-01-12 | 1 | -1/+1 |
* | Record-delimiting stream adapter. | Kaz Kylheku | 2016-01-01 | 1 | -0/+41 |
* | Copyright year bump. | Kaz Kylheku | 2015-12-31 | 1 | -1/+1 |
* | range-regex returns range, not cons. | Kaz Kylheku | 2015-12-07 | 1 | -2/+2 |
* | Fix serious regression in search_regex. | Kaz Kylheku | 2015-11-06 | 1 | -3/+1 |
* | Stop using C library setjmp/longjmp. | Kaz Kylheku | 2015-10-25 | 1 | -1/+0 |
* | Additional reductions for and. | Kaz Kylheku | 2015-09-29 | 1 | -0/+6 |
* | Simplify and optimization. | Kaz Kylheku | 2015-09-29 | 1 | -4/+1 |
* | Optimize some cases of the regex branch operator. | Kaz Kylheku | 2015-09-29 | 1 | -0/+43 |
* | Some optimizations for * ? and +. | Kaz Kylheku | 2015-09-29 | 1 | -4/+21 |
* | Regex printer fails on \w, \s or \d in char class. | Kaz Kylheku | 2015-09-29 | 1 | -0/+2 |
* | More complement optimizations. | Kaz Kylheku | 2015-09-28 | 1 | -0/+19 |
* | Streamline some regex optimizations. | Kaz Kylheku | 2015-09-28 | 1 | -15/+48 |
* | Optimization for one-character range. | Kaz Kylheku | 2015-09-27 | 1 | -2/+7 |
* | Optimize complement operator more. | Kaz Kylheku | 2015-09-27 | 1 | -0/+28 |
* | S-exp level regex optimization. | Kaz Kylheku | 2015-09-27 | 1 | -32/+156 |
* | Support t regex in NFA compiler and in printer. | Kaz Kylheku | 2015-09-27 | 1 | -1/+16 |
* | Replace internal_error with exception throws in regex. | Kaz Kylheku | 2015-09-27 | 1 | -7/+7 |
* | Bug in complement case of reg_matches_all. | Kaz Kylheku | 2015-09-27 | 1 | -1/+2 |
* | regex: major optimization for complement operator. | Kaz Kylheku | 2015-09-24 | 1 | -1/+46 |
* | Regex state-marking counter wraparound bug. | Kaz Kylheku | 2015-09-15 | 1 | -1/+28 |
* | Use alloca for some temporary arrays in regex module. | Kaz Kylheku | 2015-09-15 | 1 | -11/+5 |
* | Remove limit on NFA state size and allocate tightly. | Kaz Kylheku | 2015-09-15 | 1 | -62/+63 |
* | Fix memory leak in regexes. | Kaz Kylheku | 2015-09-14 | 1 | -1/+1 |
* | Don't use prot1 for temporary gc protection. | Kaz Kylheku | 2015-09-07 | 1 | -3/+1 |
* | Count East Asian Wide and Full Fidth chars as two columns. | Kaz Kylheku | 2015-08-10 | 1 | -0/+66 |
* | Pass pretty flag to cobj print operation. | Kaz Kylheku | 2015-08-01 | 1 | -2/+3 |
* | Correction to COBJ initialization pattern. | Kaz Kylheku | 2015-07-30 | 1 | -2/+2 |
* | Bugfix: throwing error when trying to print valid regexps. | Kaz Kylheku | 2015-04-19 | 1 | -1/+1 |
* | * regex.c (match_regex_right): Bugfix: zero length matches | Kaz Kylheku | 2015-02-20 | 1 | -1/+1 |