diff --git a/src/librustc_driver/lib.rs b/src/librustc_driver/lib.rs index f408316c9f92..58dd21c92924 100644 --- a/src/librustc_driver/lib.rs +++ b/src/librustc_driver/lib.rs @@ -411,7 +411,7 @@ fn show_content_with_pager(content: &String) { // If pager fails for whatever reason, we should still print the content // to standard output if fallback_to_println { - println!("{}", content); + print!("{}", content); } }