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

Commit

Permalink
Merge pull request #3 from Keno/pull-request/f8ee503c
Browse files Browse the repository at this point in the history
Fix the test issue
  • Loading branch information
jakebolewski committed Jun 20, 2014
2 parents 1534dbe + f8ee503 commit ce23d35
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 ce23d35

Please sign in to comment.