about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-09-04 16:20:46 -0700
committerbors <bors@rust-lang.org>2013-09-04 16:20:46 -0700
commitb161e09e03a5a0135557daa7166d290a515fbec2 (patch)
tree5389bbee679d726c69023e9fae74d1a0fb3ee215 /src/libsyntax
parent6c13b0f4f6b6c51c0d83bad3c48d7249a1d15308 (diff)
parentc326ff0c2839862e8307fcbfec84afd288168051 (diff)
downloadrust-b161e09e03a5a0135557daa7166d290a515fbec2.tar.gz
rust-b161e09e03a5a0135557daa7166d290a515fbec2.zip
auto merge of #8977 : pnkfelix/rust/fsk-followup-on-6009-rebased, r=alexcrichton
Fix #6009.  Rebased version of #8970.  Inherits review from alexcrichton.
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/ext/expand.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libsyntax/ext/expand.rs b/src/libsyntax/ext/expand.rs
index 202d75db399..7e48fe4d419 100644
--- a/src/libsyntax/ext/expand.rs
+++ b/src/libsyntax/ext/expand.rs
@@ -909,8 +909,7 @@ pub fn std_macros() -> @str {
 
         { $c:ident: $input:ty -> $out:ty; } => {
 
-            // FIXME (#6009): remove mod's `pub` below once variant above lands.
-            pub mod $c {
+            mod $c {
                 #[allow(unused_imports)];
                 #[allow(non_uppercase_statics)];