File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
trunk/src/libsyntax/print Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: c88ab58c68a5ec0b8c85f4c03827db57d13d87e2
2
+ refs/heads/master: 143c7a3d966a60cdb8457e2e07472fe3c2816bae
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5
5
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf
Original file line number Diff line number Diff line change @@ -1539,8 +1539,8 @@ fn print_remaining_comments(s: ps) {
1539
1539
fn print_literal ( s : ps , & & lit: @ast:: lit ) {
1540
1540
maybe_print_comment ( s, lit. span . lo ) ;
1541
1541
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 ) ;
1544
1544
ret;
1545
1545
}
1546
1546
_ { }
@@ -1589,10 +1589,10 @@ fn next_lit(s: ps, pos: uint) -> option<comments::lit> {
1589
1589
alt s. literals {
1590
1590
some ( lits) {
1591
1591
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; }
1594
1594
s. cur_lit += 1 u;
1595
- if lt . pos == pos { ret some ( lt ) ; }
1595
+ if ltrl . pos == pos { ret some ( ltrl ) ; }
1596
1596
}
1597
1597
ret none;
1598
1598
}
You can’t perform that action at this time.
0 commit comments