summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2011-10-09 21:45:51 -0700
committerKaz Kylheku <kaz@kylheku.com>2011-10-09 21:45:51 -0700
commit889501071aeae561b026fc298e0442d2ef4e433f (patch)
tree21441698c9bfa98d227790c5ec5ec0b0c9fdd29a /stream.c
parentc318e1c4bc5dbdb1dbec46bd8962e20d5654de54 (diff)
downloadtxr-889501071aeae561b026fc298e0442d2ef4e433f.tar.gz
txr-889501071aeae561b026fc298e0442d2ef4e433f.tar.bz2
txr-889501071aeae561b026fc298e0442d2ef4e433f.zip
Ported to Cygwin.
TODO: there should be some type safety with the new wli macro so that if it is forgotten, there will be a diagnostic. * configure (lit_align): New configuration variable and configuration test. Generates LIT_ALIGN in config.h. Fixed the integer-holds-pointer test for the different output from the nm program on Cygwin. The arrays become common symbols marked C which do not show an offset attribute, only size: one less column. * filter.c (to_html_table, from_html_table): wrap wide string literals with the wli macro. This must be done from now on for all literals and initializes of arrays that are going to be directly converted to type tagged val-s. * lib.h (wli): New macro. (auto_str, static_str, litptr, lit_noex): Handle wide literals on platforms where they are aligned to only two bytes, such that we don't have two bits in the pointer. We can still add our 11 bit type tag, but then when recovering the pointer to the data, we have may have to fix up the pointer. * parser.l: Another portability issue here. Flex generates a scanner which has #include <unistd.h> in the middle, after the source file's own #includes which can introduce macros. On Cygwin, there is some hygiene problem whereby our "noreturn" macro causes the <unistd.h> header to generate bad syntax and fail to compile. Stupid Cygwin and even stupider flex! The workaround is to include <unistd.h> at the top in the flex source. * stream.c (string_out_put_char): This is one more place where the string literal handling hack spreads. * txr.c (version): Wrap string in wli.
Diffstat (limited to 'stream.c')
-rw-r--r--stream.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/stream.c b/stream.c
index 28fa3b84..f15e7b2a 100644
--- a/stream.c
+++ b/stream.c
@@ -415,9 +415,16 @@ static val string_out_put_string(val stream, val str)
static val string_out_put_char(val stream, val ch)
{
+#if LIT_ALIGN < 4
+ wchar_t mini[3];
+ mini[0] = 0;
+ mini[1] = c_chr(ch);
+ mini[2] = 0;
+#else
wchar_t mini[2];
mini[0] = c_chr(ch);
mini[1] = 0;
+#endif
return string_out_put_string(stream, auto_str(mini));
}