diff options
| author | bors <bors@rust-lang.org> | 2014-03-13 07:11:41 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-03-13 07:11:41 -0700 |
| commit | 05975a49282355ab2d7ddfa54c23294ae271d544 (patch) | |
| tree | 8cf198c46d84ac3e89065ce0741f4ef7084b6350 /src/libsyntax/parse | |
| parent | 50fb2a4f1fcf7671f4bdc8d438a11688636e5ecf (diff) | |
| parent | 0d80de0dfa313e9009a02d2996c936f77b68f86b (diff) | |
| download | rust-05975a49282355ab2d7ddfa54c23294ae271d544.tar.gz rust-05975a49282355ab2d7ddfa54c23294ae271d544.zip | |
auto merge of #12849 : nick29581/rust/doubles, r=alexcrichton
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index 676db94cd7c..a4877491990 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -770,6 +770,7 @@ impl Parser { next: token::Token, lo: BytePos, hi: BytePos) { + self.last_span = mk_sp(self.span.lo, lo); self.token = next; self.span = mk_sp(lo, hi); } |
