summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-17 14:12:30 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-17 14:12:30 -0800
commiteec7d1dea908432cc2ec9337cd3e0f63b72c16d9 (patch)
treec4c248db2f518d367b6cb6996677ec064847dafa /ChangeLog
parent07e0c300bc1a4c310080d0b2c21fdc863778115e (diff)
downloadtxr-eec7d1dea908432cc2ec9337cd3e0f63b72c16d9.tar.gz
txr-eec7d1dea908432cc2ec9337cd3e0f63b72c16d9.tar.bz2
txr-eec7d1dea908432cc2ec9337cd3e0f63b72c16d9.zip
Fixes for compliance to C89.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog26
1 files changed, 26 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index bd486f31..d80ad45a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,31 @@
2009-11-17 Kaz Kylheku <kkylheku@gmail.com>
+ Fixes for compliance to C89.
+
+ * lib.c (init): Do not define variable after statements.
+
+ * match.c (match_files): Likewise.
+
+ * regex.h (struct any_char_set, struct small_char_set, struct
+ displaced_char_set, struct large_char_set,
+ struct xlarge_char_set): do not use enum bitfields, which is a GCC
+ extension.
+
+ * unwind.h (enum uw_frtype, uw_frtype_t): Combine into one
+ declartion, eliminating forward enum reference which is a GCC
+ extension.
+ (uw_block_begin): Add dummy typedef to macro so that it requires
+ a following semicolon. Without this, if the macro use is followed
+ by a semicolon, that semicolon looks like a null statement. A
+ subsequent declaration thus follows a statement and is not conforming
+ to C89. Also added an opening do.
+ (uw_block_end): Add while(0) to match do in uw_block_begin.
+ (uw_env_begin, uw_env_end): Add do/while(0) to macro pair, so
+ uw_env_end reuqires a semicolon.
+ (uw_catch_begin, uw_catch_end): Likewise.
+
+2009-11-17 Kaz Kylheku <kkylheku@gmail.com>
+
Version 022
Fix for bug 28033: crash in string output stream.