libsyntax: Fix long line

This commit is contained in:
Erick Tryzelaar 2012-09-27 19:24:11 -07:00
parent dc2f775037
commit b68d287780
1 changed files with 2 additions and 1 deletions

View File

@ -2231,7 +2231,8 @@ impl parser {
self.expect(token::LBRACE);
let {inner, next} = maybe_parse_inner_attrs_and_next(self,
parse_attrs);
return (inner, self.parse_block_tail_(lo, if us { unsafe_blk } else { default_blk }, next));
let blk_check_mode = if us { unsafe_blk } else { default_blk };
return (inner, self.parse_block_tail_(lo, blk_check_mode, next));
}
fn parse_block_no_value() -> blk {