Skip to content

Commit a65d947

Browse files
committed
---
yaml --- r: 32554 b: refs/heads/dist-snap c: 320331f h: refs/heads/master v: v3
1 parent f3d5b3a commit a65d947

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
@@ -7,6 +7,6 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df
99
refs/heads/incoming: d9317a174e434d4c99fc1a37fd7dc0d2f5328d37
10-
refs/heads/dist-snap: 2eef6658c3e949e17dae115c95c7686105184017
10+
refs/heads/dist-snap: 320331fe35f4020b388b2ccc5128d7261473ea08
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/dist-snap/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/dist-snap/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)