changed the end of input character to a unicode non character

This commit is contained in:
alisdair sullivan 2010-05-24 17:14:04 -07:00
parent 079aa7ccf6
commit bdc173a6e4
2 changed files with 6 additions and 6 deletions

View file

@ -35,7 +35,7 @@ test_body(TestSpec, Dir) ->
end.
decode(F, <<>>) ->
{Result, _} = F(<<16#F8FF/utf8>>),
{Result, _} = F(<<16#FDEF/utf8>>),
Result;
decode(F, <<A/utf8, Rest/binary>>) ->
case F(<<A/utf8>>) of