summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-19 14:54:04 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-19 14:54:04 -0800
commitd3abb71364d041a2d8334fcd8d32ba7857606fb0 (patch)
tree5991ff81ef062a16ec23419a2977eba2016715b4 /ChangeLog
parentf5b18ec696f2c176a2f9f49a3c3a5e158291d00f (diff)
downloadtxr-d3abb71364d041a2d8334fcd8d32ba7857606fb0.tar.gz
txr-d3abb71364d041a2d8334fcd8d32ba7857606fb0.tar.bz2
txr-d3abb71364d041a2d8334fcd8d32ba7857606fb0.zip
Get rid of macros in favor of safer inline functions.
The recent auto_str("byte str") error could have been caught at compile time.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog16
1 files changed, 16 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 976d60f3..2293dc40 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,21 @@
2009-11-19 Kaz Kylheku <kkylheku@gmail.com>
+ Get rid of macros in favor of safer inline functions.
+
+ The recent auto_str("byte str") error could have been caught
+ at compile time.
+
+ * Makefile (CFLAGS): Include expansion of INLINE_FLAGS.
+
+ * configure (inline_flags): New variable.
+ (INLINE_FLAGS): New variable generated in config.make.
+
+ * lib.h (tag, is_ptr, is_num, is_chr, is_lit, type,
+ auto_str, static_str, litptr): Function-like macros converted to
+ functions.
+
+2009-11-19 Kaz Kylheku <kkylheku@gmail.com>
+
Version 024
Fixed show-stopper breakage in parse error diagnostic function.