diff options
| author | Michael Woerister <michaelwoerister@posteo> | 2021-08-26 12:46:01 +0200 |
|---|---|---|
| committer | Michael Woerister <michaelwoerister@posteo> | 2021-08-27 11:50:44 +0200 |
| commit | af1b65cb18d5fa1358d1ae7a8ed3b1f7c635b6b5 (patch) | |
| tree | afc0d0959aae2f267142807624136555545f4fd8 /compiler/rustc_parse | |
| parent | dfd6306d26af1a163aaaa1456b4594244ddd182f (diff) | |
| download | rust-af1b65cb18d5fa1358d1ae7a8ed3b1f7c635b6b5.tar.gz rust-af1b65cb18d5fa1358d1ae7a8ed3b1f7c635b6b5.zip | |
Path remapping: Make behavior of diagnostics output dependent on presence of --remap-path-prefix.
Diffstat (limited to 'compiler/rustc_parse')
| -rw-r--r-- | compiler/rustc_parse/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_parse/src/lib.rs b/compiler/rustc_parse/src/lib.rs index 73e05a35277..bf76dedd252 100644 --- a/compiler/rustc_parse/src/lib.rs +++ b/compiler/rustc_parse/src/lib.rs @@ -190,7 +190,7 @@ pub fn maybe_file_to_stream( let src = source_file.src.as_ref().unwrap_or_else(|| { sess.span_diagnostic.bug(&format!( "cannot lex `source_file` without source: {}", - source_file.name.prefer_local() + sess.source_map().filename_for_diagnostics(&source_file.name) )); }); |
