about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2024-02-29 15:37:38 +1100
committerNicholas Nethercote <n.nethercote@gmail.com>2024-02-29 17:50:23 +1100
commit9c85ae873cb959965d2ccfa3fb49fd121cfe12b8 (patch)
tree04b98621bb01e14887874720667c8ad871907b03
parent0811e8f8777391375d2410a716d0659c44fb7a10 (diff)
downloadrust-9c85ae873cb959965d2ccfa3fb49fd121cfe12b8.tar.gz
rust-9c85ae873cb959965d2ccfa3fb49fd121cfe12b8.zip
Inline and remove `HumanEmitter::stderr`.
Because `HumanEmitter::new` is enough, in conjunction with the (renamed)
`stderr_destination` function.
-rw-r--r--src/parse/session.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/parse/session.rs b/src/parse/session.rs
index ad36e022b8d..7e6517a66dd 100644
--- a/src/parse/session.rs
+++ b/src/parse/session.rs
@@ -3,7 +3,7 @@ use std::path::Path;
 use std::sync::atomic::{AtomicBool, Ordering};
 
 use rustc_data_structures::sync::{IntoDynSyncSend, Lrc};
-use rustc_errors::emitter::{DynEmitter, Emitter, HumanEmitter};
+use rustc_errors::emitter::{stderr_destination, DynEmitter, Emitter, HumanEmitter};
 use rustc_errors::translation::Translate;
 use rustc_errors::{
     ColorConfig, Diag, DiagCtxt, DiagInner, ErrorGuaranteed, Level as DiagnosticLevel,
@@ -152,7 +152,10 @@ fn default_dcx(
             rustc_driver::DEFAULT_LOCALE_RESOURCES.to_vec(),
             false,
         );
-        Box::new(HumanEmitter::stderr(emit_color, fallback_bundle).sm(Some(source_map.clone())))
+        Box::new(
+            HumanEmitter::new(stderr_destination(emit_color), fallback_bundle)
+                .sm(Some(source_map.clone())),
+        )
     };
     DiagCtxt::new(Box::new(SilentOnIgnoredFilesEmitter {
         has_non_ignorable_parser_errors: false,