Skip to content
This repository has been archived by the owner on Jun 9, 2023. It is now read-only.

Commit

Permalink
Fix the test issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Keno committed Jun 20, 2014
1 parent 6652101 commit f8ee503
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lexer.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f8ee503

Please sign in to comment.