From bca026efb9cad5dba599cfd7a86223745aba5b8b Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Wed, 18 Nov 2015 06:14:26 -0500 Subject: [PATCH] Fix two long lines. --- src/librustc_front/print/pprust.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/librustc_front/print/pprust.rs b/src/librustc_front/print/pprust.rs index f29ef0e8217..e059a4ed5f6 100644 --- a/src/librustc_front/print/pprust.rs +++ b/src/librustc_front/print/pprust.rs @@ -91,7 +91,10 @@ pub fn rust_printer<'a>(writer: Box, krate: Option<&'a Crate>) -> St rust_printer_annotated(writer, &NO_ANN, krate) } -pub fn rust_printer_annotated<'a>(writer: Box, ann: &'a PpAnn, krate: Option<&'a Crate>) -> State<'a> { +pub fn rust_printer_annotated<'a>(writer: Box, + ann: &'a PpAnn, + krate: Option<&'a Crate>) + -> State<'a> { State { krate: krate, s: pp::mk_printer(writer, default_columns), @@ -126,7 +129,8 @@ pub fn print_crate<'a>(cm: &'a CodeMap, ann: &'a PpAnn, is_expanded: bool) -> io::Result<()> { - let mut s = State::new_from_input(cm, span_diagnostic, filename, input, out, ann, is_expanded, Some(krate)); + let mut s = State::new_from_input(cm, span_diagnostic, filename, input, + out, ann, is_expanded, Some(krate)); // When printing the AST, we sometimes need to inject `#[no_std]` here. // Since you can't compile the HIR, it's not necessary.