about summary refs log tree commit diff
path: root/src/comp
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2011-09-01 18:50:49 -0700
committerBrian Anderson <banderson@mozilla.com>2011-09-01 18:54:06 -0700
commit1d3eb4911a227500c51858cdb830fe27cb5b9ca7 (patch)
tree463a0eb75f3bab8ca3b59c3dca6ed2f59164991d /src/comp
parent418d09e547a021ad4853680f7efc3efc8774054c (diff)
downloadrust-1d3eb4911a227500c51858cdb830fe27cb5b9ca7.tar.gz
rust-1d3eb4911a227500c51858cdb830fe27cb5b9ca7.zip
Remove #ifmt. Issue #855
Diffstat (limited to 'src/comp')
-rw-r--r--src/comp/syntax/ext/base.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/comp/syntax/ext/base.rs b/src/comp/syntax/ext/base.rs
index fda7bb71dbf..274cb2dbd40 100644
--- a/src/comp/syntax/ext/base.rs
+++ b/src/comp/syntax/ext/base.rs
@@ -23,8 +23,6 @@ tag syntax_extension {
 fn syntax_expander_table() -> hashmap<istr, syntax_extension> {
     let syntax_expanders = new_str_hash::<syntax_extension>();
     syntax_expanders.insert(~"fmt", normal(ext::fmt::expand_syntax_ext));
-    // FIXME: Transitional. Remove
-    syntax_expanders.insert(~"ifmt", normal(ext::fmt::expand_syntax_ext));
     syntax_expanders.insert(~"env", normal(ext::env::expand_syntax_ext));
     syntax_expanders.insert(~"macro",
                             macro_defining(ext::simplext::add_new_extension));