diff options
| author | Kevin Atkinson <kevina@cs.utah.edu> | 2012-02-08 17:45:02 -0700 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2012-02-14 19:37:33 -0800 |
| commit | 3eef8d14197d5166286f6a4dbc4b604e52581618 (patch) | |
| tree | eda30cee331badb80286054cb37bc5378cc93130 /src/comp/syntax/parse | |
| parent | 379194753c3684f800540d26702453b487a3630c (diff) | |
| download | rust-3eef8d14197d5166286f6a4dbc4b604e52581618.tar.gz rust-3eef8d14197d5166286f6a4dbc4b604e52581618.zip | |
Correctly handle the character position at the EOF.
Fixes issue #1785.
Diffstat (limited to 'src/comp/syntax/parse')
| -rw-r--r-- | src/comp/syntax/parse/lexer.rs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/comp/syntax/parse/lexer.rs b/src/comp/syntax/parse/lexer.rs index 300d0a66f1d..aa989cb0f61 100644 --- a/src/comp/syntax/parse/lexer.rs +++ b/src/comp/syntax/parse/lexer.rs @@ -43,7 +43,13 @@ impl reader for reader { let next = str::char_range_at(*self.src, self.pos); self.pos = next.next; self.curr = next.ch; - } else { self.curr = -1 as char; } + } else { + if (self.curr != -1 as char) { + self.col += 1u; + self.chpos += 1u; + self.curr = -1 as char; + } + } } fn fatal(m: str) -> ! { self.span_diagnostic.span_fatal( |
