summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-17 21:52:34 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-17 21:52:34 -0800
commit441f524c0733208c22dd5c38091070abd4063ae6 (patch)
tree9973d17ac80533dcc52b93de78607492bfaf7b0d /ChangeLog
parent001920e1750a6fa121552fcbcb6c8bcbe5a2460e (diff)
downloadtxr-441f524c0733208c22dd5c38091070abd4063ae6.tar.gz
txr-441f524c0733208c22dd5c38091070abd4063ae6.tar.bz2
txr-441f524c0733208c22dd5c38091070abd4063ae6.zip
More removal of C99 wide character I/O, and tightening up
of standard conformance.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog25
1 files changed, 25 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6b6df3f4..60235b61 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,30 @@
2009-11-17 Kaz Kylheku <kkylheku@gmail.com>
+ More removal of C99 wide character I/O, and tightening up
+ of standard conformance.
+
+ * configure (lang_flags): Specify -D_POSIX_C_SOURCE=2 to obtain
+ POSIX 1003.1 and POSIX 1003.2 functions from the headers,
+ without GNU extensions. Specify -std=c89 to get C89 conformance
+ from gcc.
+
+ * match.c (dump_byte_string): New function.
+ (dump_shell_string): Retargetted to object streams.
+ (dump_var, dump_bindings): Retargetted to object streams.
+ Changed back to using a byte string for the array index prefixes,
+ to avoid using the wide-character swprintf.
+
+ * parser.l (grammar): Eliminate wcsdup uses in favor of chk_strdup.
+ Not only is wcsdup a GNU extension, it doesn't have the OOM check.
+
+ * stream.c: Added <sys/wait.h> header to define WIFEXITED and others.
+
+ * txr.c: Added include of <stdarg.h>. Removed <locale.h>,
+ (main): Removed setlocale call. Not needed any more, since wide
+ stream and string I/O is no longer used from the C library.
+
+2009-11-17 Kaz Kylheku <kkylheku@gmail.com>
+
Removing use of C99 wide character I/O.
* stream.c (BROKEN_POPEN_GETWC): Macro removed. Work around no