Skip to content

Commit 4e95ce8

Browse files
committed
---
yaml --- r: 28470 b: refs/heads/try c: 320331f h: refs/heads/master v: v3
1 parent 0c37e96 commit 4e95ce8

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
5-
refs/heads/try: 2eef6658c3e949e17dae115c95c7686105184017
5+
refs/heads/try: 320331fe35f4020b388b2ccc5128d7261473ea08
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df

branches/try/src/libcore/extfmt.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -273,10 +273,8 @@ mod ct {
273273
// decisions made a runtime. If it proves worthwhile then some of these
274274
// conditions can be evaluated at compile-time. For now though it's cleaner to
275275
// implement it 0this way, I think.
276-
#[cfg(stage1)]
277-
#[cfg(stage2)]
278-
#[cfg(stage3)]
279-
mod rt {
276+
// XXX Rename to rt after snapshot
277+
mod rt2 {
280278
const flag_none : u32 = 0u32;
281279
const flag_left_justify : u32 = 0b00000000000000000000000000000001u32;
282280
const flag_left_zero_pad : u32 = 0b00000000000000000000000000000010u32;
@@ -464,7 +462,6 @@ mod rt {
464462
}
465463

466464
// XXX remove after snappies
467-
#[cfg(stage0)]
468465
#[allow(non_camel_case_types)]
469466
mod rt {
470467
const flag_none : u32 = 0u32;

branches/try/src/libsyntax/ext/fmt.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ fn pieces_to_expr(cx: ext_ctxt, sp: span,
3939
-> @ast::expr {
4040
fn make_path_vec(_cx: ext_ctxt, ident: @~str) -> ~[ast::ident] {
4141
let intr = _cx.parse_sess().interner;
42-
return ~[intr.intern(@~"extfmt"), intr.intern(@~"rt"),
42+
return ~[intr.intern(@~"extfmt"), intr.intern(@~"rt2"),
4343
intr.intern(ident)];
4444
}
4545
fn make_rt_path_expr(cx: ext_ctxt, sp: span, nm: @~str) -> @ast::expr {

0 commit comments

Comments
 (0)