'#simplext' -> '#macro'

This commit is contained in:
Paul Stansifer 2011-06-27 10:58:05 -07:00 committed by Graydon Hoare
parent c3901cdf8e
commit b3443eb049
7 changed files with 10 additions and 10 deletions

View file

@ -22,7 +22,7 @@ fn syntax_expander_table() -> hashmap[str, syntax_extension] {
auto syntax_expanders = new_str_hash[syntax_extension]();
syntax_expanders.insert("fmt", normal(extfmt::expand_syntax_ext));
syntax_expanders.insert("env", normal(extenv::expand_syntax_ext));
syntax_expanders.insert("simplext",
syntax_expanders.insert("macro",
macro_defining(extsimplext::add_new_extension));
ret syntax_expanders;
}