From f8ee503c9ea6d5786cf5556d7fe8e43f2cc613c6 Mon Sep 17 00:00:00 2001 From: Keno Fischer Date: Thu, 19 Jun 2014 22:47:39 -0400 Subject: [PATCH] Fix the test issue --- src/lexer.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lexer.jl b/src/lexer.jl index 53d014e..10c46a4 100644 --- a/src/lexer.jl +++ b/src/lexer.jl @@ -335,7 +335,7 @@ function read_operator(io::IO, c::Char) push!(str, c) newop = symbol(utf32(str)) if is_operator(newop) - skip(io, 1) + skip(io, Base.utf8sizeof(c)) c, opsym = peekchar(io), newop continue end