about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorJames Deng <cnJamesDeng@gmail.com>2014-02-04 22:03:00 +1100
committerJames Deng <cnJamesDeng@gmail.com>2014-02-04 22:03:00 +1100
commit124938bcf5381bf6e686dfe5741d2d411574acac (patch)
treee5f069020fea6bb35a4e3051e5494c0027d3867b /src/libsyntax
parent38f2526beb8bcd0a8501aecfe95a2f65841a1c7f (diff)
downloadrust-124938bcf5381bf6e686dfe5741d2d411574acac.tar.gz
rust-124938bcf5381bf6e686dfe5741d2d411574acac.zip
Replaced with a single "quote" feature gate.
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs
index 8f549d528bc..a61c354e7cd 100644
--- a/src/libsyntax/lib.rs
+++ b/src/libsyntax/lib.rs
@@ -27,8 +27,8 @@ This API is completely unstable and subject to change.
       html_root_url = "http://static.rust-lang.org/doc/master")];
 
 #[feature(macro_rules, globs, managed_boxes)];
-#[allow(unknown_features)];
-#[feature(quote_expr)];
+#[allow(unknown_features)];// Note: remove it after a snapshot.
+#[feature(quote)];
 
 #[deny(non_camel_case_types)];