summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gen.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gen.rs b/src/gen.rs
index a7851a02..6ce46755 100644
--- a/src/gen.rs
+++ b/src/gen.rs
@@ -135,7 +135,12 @@ pub fn gen_mod(links: &[(String, LinkType)], globs: Vec<Global>, span: Span) ->
};
ctx.ext_cx.bt_push(ExpnInfo {
call_site: ctx.span,
- callee: NameAndSpan { name: String::new(), format: MacroBang, span: None }
+ callee: NameAndSpan {
+ name: String::new(),
+ format: MacroBang,
+ allow_internal_unstable: false,
+ span: None
+ }
});
let uniq_globs = tag_dup_decl(globs);