]> git.lizzy.rs Git - rust.git/commit
Rename macro_escape to macro_use
authorKeegan McAllister <kmcallister@mozilla.com>
Fri, 19 Dec 2014 04:48:26 +0000 (20:48 -0800)
committerKeegan McAllister <kmcallister@mozilla.com>
Mon, 5 Jan 2015 20:00:57 +0000 (12:00 -0800)
commit5bf385be6a5ce267ac7cd9d1725178488e33131c
tree7cfa66cf0c1acd0e6cf29efe0d77deb29d3a8946
parentfc584793237c388e9dca76ef406d1af34e453fe2
Rename macro_escape to macro_use

In the future we want to support

    #[macro_use(foo, bar)]
    mod macros;

but it's not an essential part of macro reform.  Reserve the syntax for now.
18 files changed:
src/libcollections/lib.rs
src/libcore/lib.rs
src/libcoretest/num/mod.rs
src/liblog/lib.rs
src/librustc_driver/driver.rs
src/librustc_trans/trans/mod.rs
src/librustdoc/lib.rs
src/libstd/io/mod.rs
src/libstd/lib.rs
src/libstd/rt/mod.rs
src/libstd/thread_local/mod.rs
src/libsyntax/ext/expand.rs
src/libsyntax/parse/mod.rs
src/test/compile-fail/module-macro_use-arguments.rs [new file with mode: 0644]
src/test/run-pass/cfg-macros-foo.rs
src/test/run-pass/cfg-macros-notfoo.rs
src/test/run-pass/deprecated-macro_escape-inner.rs [new file with mode: 0644]
src/test/run-pass/deprecated-macro_escape.rs [new file with mode: 0644]