re-add lost call to expand_block_elts

This commit is contained in:
John Clements 2013-06-07 14:54:48 -07:00
parent 9071ac60b6
commit 1f8e856430

View File

@ -772,7 +772,8 @@ pub fn expand_block(extsbox: @mut SyntaxEnv,
orig: @fn(&Block, @ast_fold) -> Block)
-> Block {
// see note below about treatment of exts table
with_exts_frame!(extsbox,false,orig(blk,fld))
with_exts_frame!(extsbox,false,
expand_block_elts(*extsbox, blk, fld))
}