about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorHuon Wilson <dbau.pp+github@gmail.com>2013-07-17 03:08:08 +1000
committerHuon Wilson <dbau.pp+github@gmail.com>2013-07-17 03:10:13 +1000
commite4f7561bcdf3b54dafefd478b86e1f7610e74348 (patch)
tree6f4506b96626346a45157e2ed5122942ca932add /src/libsyntax
parentb48e37e8eecafe3cfc72062a9369aae245063e19 (diff)
downloadrust-e4f7561bcdf3b54dafefd478b86e1f7610e74348.tar.gz
rust-e4f7561bcdf3b54dafefd478b86e1f7610e74348.zip
Clean-up tests after debug!/std-macros change.
The entire testsuite is converted to using info! rather than debug!
because some depend on the code within the debug! being trans'd.
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/ext/expand.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libsyntax/ext/expand.rs b/src/libsyntax/ext/expand.rs
index d63d914edd3..c421da06795 100644
--- a/src/libsyntax/ext/expand.rs
+++ b/src/libsyntax/ext/expand.rs
@@ -453,8 +453,9 @@ pub fn new_span(cx: @ExtCtxt, sp: span) -> span {
 
 pub fn std_macros() -> @str {
     return
-@"pub mod __std_macros {
+@"mod __std_macros {
     #[macro_escape];
+    #[doc(hidden)];
 
     macro_rules! ignore (($($x:tt)*) => (()))