Skip to content

Commit b28f39c

Browse files
committed
---
yaml --- r: 13736 b: refs/heads/master c: 143c7a3 h: refs/heads/master v: v3
1 parent 2101da1 commit b28f39c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: c88ab58c68a5ec0b8c85f4c03827db57d13d87e2
2+
refs/heads/master: 143c7a3d966a60cdb8457e2e07472fe3c2816bae
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
55
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf

trunk/src/libsyntax/print/pprust.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1539,8 +1539,8 @@ fn print_remaining_comments(s: ps) {
15391539
fn print_literal(s: ps, &&lit: @ast::lit) {
15401540
maybe_print_comment(s, lit.span.lo);
15411541
alt next_lit(s, lit.span.lo) {
1542-
some(lt) {
1543-
word(s.s, lt.lit);
1542+
some(ltrl) {
1543+
word(s.s, ltrl.lit);
15441544
ret;
15451545
}
15461546
_ {}
@@ -1589,10 +1589,10 @@ fn next_lit(s: ps, pos: uint) -> option<comments::lit> {
15891589
alt s.literals {
15901590
some(lits) {
15911591
while s.cur_lit < vec::len(lits) {
1592-
let lt = lits[s.cur_lit];
1593-
if lt.pos > pos { ret none; }
1592+
let ltrl = lits[s.cur_lit];
1593+
if ltrl.pos > pos { ret none; }
15941594
s.cur_lit += 1u;
1595-
if lt.pos == pos { ret some(lt); }
1595+
if ltrl.pos == pos { ret some(ltrl); }
15961596
}
15971597
ret none;
15981598
}

0 commit comments

Comments
 (0)