diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-10-04 08:14:31 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-10-04 08:14:31 -0700 |
commit | a9d41d03d13b369118a5e12a42898d8af894107f (patch) | |
tree | d9eba0488a37905ce983bc977393d3e35d798321 /ChangeLog | |
parent | 972fd2cff9ff7e3981acc4c3807a529e1b40d0bf (diff) | |
download | txr-a9d41d03d13b369118a5e12a42898d8af894107f.tar.gz txr-a9d41d03d13b369118a5e12a42898d8af894107f.tar.bz2 txr-a9d41d03d13b369118a5e12a42898d8af894107f.zip |
Keep regex source code in regex objects, in anticipation
of pretty-printing. Fix object construction bugs.
* regex.c (struct regex): New member, source.
(regex_mark): Ensure source is visited by garbage collector.
(regex_compile): Store regex_sexp in source.
Fix violations of section 3.2 of HACKING document.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -1,3 +1,13 @@ +2014-10-04 Kaz Kylheku <kaz@kylheku.com> + + Keep regex source code in regex objects, in anticipation + of pretty-printing. Fix object construction bugs. + + * regex.c (struct regex): New member, source. + (regex_mark): Ensure source is visited by garbage collector. + (regex_compile): Store regex_sexp in source. + Fix violations of section 3.2 of HACKING document. + 2014-10-03 Kaz Kylheku <kaz@kylheku.com> Eliminating the extra list wrapping applied to regular |