removed wayward io:format

This commit is contained in:
alisdair sullivan 2011-07-26 13:34:48 -07:00
parent 0507dc38dc
commit 6d0d2cfb8c

View file

@ -572,7 +572,6 @@ low_surrogate(Bin, Stack, Opts, String, Acc, High) ->
%% stole this from the unicode spec
surrogate_to_codepoint(High, Low) ->
io:format("~p ~p~n", [High, Low]),
(High - 16#d800) * 16#400 + (Low - 16#dc00) + 16#10000.