summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2011-09-24 09:41:54 -0700
committerKaz Kylheku <kaz@kylheku.com>2011-09-24 09:41:54 -0700
commit658eb97af000aa0598e3544c2c7ea2cdd60b5b06 (patch)
tree81fe02dc5086c6e7f7ab6740ea5b035f19a992a1 /ChangeLog
parent8805225d527a576a072879a9dc21ba9a445c2f1a (diff)
downloadtxr-658eb97af000aa0598e3544c2c7ea2cdd60b5b06.tar.gz
txr-658eb97af000aa0598e3544c2c7ea2cdd60b5b06.tar.bz2
txr-658eb97af000aa0598e3544c2c7ea2cdd60b5b06.zip
Numeric constants become real constants.
Vector code cleanup. * lib.h (zero, one, two, negone, maxint, minint): Extern declarations removed, macros introduced for these identifiers. * lib.c (zero, one, two, negone, maxint, minint): File scope definitions removed. (vector): Use vec_alloc and vec_fill enums instead of constants. (obj_init): Remove references to removed definitions.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog14
1 files changed, 14 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d2ba8886..3a01570b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,19 @@
2011-09-23 Kaz Kylheku <kaz@kylheku.com>
+ Numeric constants become real constants.
+
+ Vector code cleanup.
+
+ * lib.h (zero, one, two, negone, maxint, minint): Extern declarations
+ removed, macros introduced for these identifiers.
+
+ * lib.c (zero, one, two, negone, maxint, minint): File scope
+ definitions removed.
+ (vector): Use vec_alloc and vec_fill enums instead of constants.
+ (obj_init): Remove references to removed definitions.
+
+2011-09-23 Kaz Kylheku <kaz@kylheku.com>
+
* LICENSE, Makefile, configure, gc.c, gc.h, hash.c, hash.h, lib.c,
lib.h, match.c, match.h, parser.h, parser.l, parser.y, regex.c,
regex.h, stream.c, stream.h, txr.1, txr.c, txr.h, unwind.c, unwind.h,