Skip to content

Commit 01a296e

Browse files
committed
---
yaml --- r: 22481 b: refs/heads/master c: 407094e h: refs/heads/master i: 22479: d26d0bb v: v3
1 parent e26c9dc commit 01a296e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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: a407f74d6d3ccf13dc188c64b70b9a86db831f6b
2+
refs/heads/master: 407094e39a41ba2a6c69ee9cfaba5f600c5632b0
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
55
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be

trunk/src/libsyntax/print/pprust.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ fn print_region(s: ps, region: @ast::region) {
314314
ast::re_anon { word_space(s, "&"); }
315315
ast::re_named(name) {
316316
word(s.s, "&");
317-
word_space(s, *name);
317+
word(s.s, *name);
318318
}
319319
}
320320
}
@@ -860,7 +860,7 @@ fn print_vstore(s: ps, t: ast::vstore) {
860860
ast::vstore_fixed(none) { word(s.s, "_"); }
861861
ast::vstore_uniq { word(s.s, "~"); }
862862
ast::vstore_box { word(s.s, "@"); }
863-
ast::vstore_slice(r) { print_region(s, r); }
863+
ast::vstore_slice(r) { print_region(s, r); word(s.s, "."); }
864864
}
865865
}
866866

0 commit comments

Comments
 (0)