about summary refs log tree commit diff
path: root/src/libsyntax/print
diff options
context:
space:
mode:
authorJohn Clements <clements@racket-lang.org>2013-07-03 15:16:04 -0700
committerJohn Clements <clements@racket-lang.org>2013-09-06 13:35:10 -0700
commit09e6dda4f268e24c5d1f0804f5c1e57d1fcc158d (patch)
tree6e67e3b51c53bca24f7c9c260d2218a3dffe6dd8 /src/libsyntax/print
parent3621c674cc20e666cfa3fdef559f516b39a1189a (diff)
downloadrust-09e6dda4f268e24c5d1f0804f5c1e57d1fcc158d.tar.gz
rust-09e6dda4f268e24c5d1f0804f5c1e57d1fcc158d.zip
add temporarily unused ctxt field to mac_invoc_tt
Diffstat (limited to 'src/libsyntax/print')
-rw-r--r--src/libsyntax/print/pprust.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/print/pprust.rs b/src/libsyntax/print/pprust.rs
index 32cf30fd3a0..4d464706d6f 100644
--- a/src/libsyntax/print/pprust.rs
+++ b/src/libsyntax/print/pprust.rs
@@ -619,7 +619,7 @@ pub fn print_item(s: @ps, item: &ast::item) {
         }
         bclose(s, item.span);
       }
-      ast::item_mac(codemap::Spanned { node: ast::mac_invoc_tt(ref pth, ref tts),
+      ast::item_mac(codemap::Spanned { node: ast::mac_invoc_tt(ref pth, ref tts, ctxt),
                                    _}) => {
         print_visibility(s, item.vis);
         print_path(s, pth, false);
@@ -1021,7 +1021,7 @@ pub fn print_if(s: @ps, test: &ast::Expr, blk: &ast::Block,
 
 pub fn print_mac(s: @ps, m: &ast::mac) {
     match m.node {
-      ast::mac_invoc_tt(ref pth, ref tts) => {
+      ast::mac_invoc_tt(ref pth, ref tts, ctxt) => {
         print_path(s, pth, false);
         word(s.s, "!");
         popen(s);