diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-09-12 11:22:48 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-09-12 11:22:48 -0700 |
| commit | 320331fe35f4020b388b2ccc5128d7261473ea08 (patch) | |
| tree | 7b7edd6cc02f5d6a7c1740bd0812e87950a44412 /src/libsyntax | |
| parent | 2eef6658c3e949e17dae115c95c7686105184017 (diff) | |
| download | rust-320331fe35f4020b388b2ccc5128d7261473ea08.tar.gz rust-320331fe35f4020b388b2ccc5128d7261473ea08.zip | |
Use a different strategy for transitioning to camel case extfmt
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/ext/fmt.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ext/fmt.rs b/src/libsyntax/ext/fmt.rs index 4c5435d1123..f34679426ab 100644 --- a/src/libsyntax/ext/fmt.rs +++ b/src/libsyntax/ext/fmt.rs @@ -39,7 +39,7 @@ fn pieces_to_expr(cx: ext_ctxt, sp: span, -> @ast::expr { fn make_path_vec(_cx: ext_ctxt, ident: @~str) -> ~[ast::ident] { let intr = _cx.parse_sess().interner; - return ~[intr.intern(@~"extfmt"), intr.intern(@~"rt"), + return ~[intr.intern(@~"extfmt"), intr.intern(@~"rt2"), intr.intern(ident)]; } fn make_rt_path_expr(cx: ext_ctxt, sp: span, nm: @~str) -> @ast::expr { |
