diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-13 09:33:27 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-13 09:33:27 -0800 |
commit | 95e59dd555a038fd6eb70bc38e4e921d811b1f49 (patch) | |
tree | f3dc2ec7704ff24903618ed4ca5b09e5a1c2e5e8 /ChangeLog | |
parent | 673d5f3b84d276fb29233d6a3f485ccfe330be13 (diff) | |
download | txr-95e59dd555a038fd6eb70bc38e4e921d811b1f49.tar.gz txr-95e59dd555a038fd6eb70bc38e4e921d811b1f49.tar.bz2 txr-95e59dd555a038fd6eb70bc38e4e921d811b1f49.zip |
Previous commit broke UTF-8 lexing, by changing the get_char
semantics on the input stream to wide character input.
Also, reading a query the command line (-c) must
read bytes from a UTF-8 encoding of the string.
We introduce a new get_byte function which can extract bytes
from streams which provide it.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -1,3 +1,28 @@ +2009-11-13 Kaz Kylheku <kkylheku@gmail.com> + + Previous commit broke UTF-8 lexing, by changing the get_char + semantics on the input stream to wide character input. + Also, reading a query the command line (-c) must + read bytes from a UTF-8 encoding of the string. + We introduce a new get_byte function which can extract bytes + from streams which provide it. + + * parser.l (YYINPUT): Call get_byte instead of get_char. + + * stream.c (struct strm_ops): New function pointer, get_byte. + (stdio_get_byte): New function. + (stdio_ops, pipe_ops): Add new function. + (string_in_ops, string_out_ops, dir_ops): Null pointer added. + (struct byte_input): New struct type. + (byte_in_get_byte): New function. + (byte_in_ops): New structure. + (make_string_byte_input_stream, get_byte): New functions. + + * stream.h (make_string_byte_input_stream, get_byte): New functions. + + * txr.c (txr_main): Make a byte input stream from the command + line spec, rather than a string input stream. + 2009-11-12 Kaz Kylheku <kkylheku@gmail.com> Continuing wchar_t conversion. Making sure all stdio calls |