1
Fork 0

Test fixes from rollup

This commit is contained in:
Alex Crichton 2014-04-04 13:45:24 -07:00
parent bf1ffaf5f4
commit 6d43138b75
5 changed files with 9 additions and 9 deletions

View file

@ -915,9 +915,6 @@ impl<'a> State<'a> {
match attr.node.style {
ast::AttrInner => {
try!(self.print_attribute(attr));
if !attr.node.is_sugared_doc {
try!(word(&mut self.s, ";"));
}
count += 1;
}
_ => {/* fallthrough */ }
@ -935,7 +932,10 @@ impl<'a> State<'a> {
if attr.node.is_sugared_doc {
word(&mut self.s, attr.value_str().unwrap().get())
} else {
try!(word(&mut self.s, "#["));
match attr.node.style {
ast::AttrInner => try!(word(&mut self.s, "#![")),
ast::AttrOuter => try!(word(&mut self.s, "#[")),
}
try!(self.print_meta_item(attr.meta()));
word(&mut self.s, "]")
}