about summary refs log tree commit diff
path: root/src/libsyntax/ext
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-01-01 16:14:35 -0800
committerAlex Crichton <alex@alexcrichton.com>2017-01-02 12:13:30 -0800
commit045f8f69293fae924ee4998439ec0e34f98320be (patch)
treee1f319b047028fd4fd66a708ed1274fb4d127384 /src/libsyntax/ext
parent917e5baae7ff931b13a8b40d2fce60395fefe7a4 (diff)
downloadrust-045f8f69293fae924ee4998439ec0e34f98320be.tar.gz
rust-045f8f69293fae924ee4998439ec0e34f98320be.zip
rustc: Stabilize the `proc_macro` feature
This commit stabilizes the `proc_macro` and `proc_macro_lib` features in the
compiler to stabilize the "Macros 1.1" feature of the language. Many more
details can be found on the tracking issue, #35900.

Closes #35900
Diffstat (limited to 'src/libsyntax/ext')
-rw-r--r--src/libsyntax/ext/expand.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libsyntax/ext/expand.rs b/src/libsyntax/ext/expand.rs
index 5d62175fbf2..d45dbd3f723 100644
--- a/src/libsyntax/ext/expand.rs
+++ b/src/libsyntax/ext/expand.rs
@@ -926,7 +926,6 @@ impl<'feat> ExpansionConfig<'feat> {
         fn enable_allow_internal_unstable = allow_internal_unstable,
         fn enable_custom_derive = custom_derive,
         fn enable_pushpop_unsafe = pushpop_unsafe,
-        fn enable_proc_macro = proc_macro,
     }
 }