Stop using macro_escape as an inner attribute

In preparation for the rename.
This commit is contained in:
Keegan McAllister 2014-12-18 20:09:57 -08:00
parent 73806ddd0f
commit fc58479323
32 changed files with 55 additions and 47 deletions

View file

@ -34,13 +34,13 @@
//! will want to make use of some form of **interior mutability** through the
//! `Cell` or `RefCell` types.
#![macro_escape]
#![stable]
use prelude::v1::*;
use cell::UnsafeCell;
#[macro_escape]
pub mod scoped;
// Sure wish we had macro hygiene, no?

View file

@ -38,7 +38,6 @@
//! });
//! ```
#![macro_escape]
#![unstable = "scoped TLS has yet to have wide enough use to fully consider \
stabilizing its interface"]