Skip to content

Commit 19a38de

Browse files
committed
Auto merge of #63402 - estebank:strip-margin, r=oli-obk
Strip code to the left and right in diagnostics for long lines Fix #62999.
2 parents c7d4df0 + aaf4dc3 commit 19a38de

26 files changed

+580
-156
lines changed

Cargo.lock

+12
Original file line numberDiff line numberDiff line change
@@ -3232,6 +3232,7 @@ dependencies = [
32323232
"rustc_data_structures",
32333233
"serialize",
32343234
"syntax_pos",
3235+
"term_size",
32353236
"termcolor",
32363237
"unicode-width",
32373238
]
@@ -4107,6 +4108,17 @@ dependencies = [
41074108
"winapi 0.3.6",
41084109
]
41094110

4111+
[[package]]
4112+
name = "term_size"
4113+
version = "0.3.1"
4114+
source = "registry+https://github.com/rust-lang/crates.io-index"
4115+
checksum = "9e5b9a66db815dcfd2da92db471106457082577c3c278d4138ab3e3b4e189327"
4116+
dependencies = [
4117+
"kernel32-sys",
4118+
"libc",
4119+
"winapi 0.2.8",
4120+
]
4121+
41104122
[[package]]
41114123
name = "termcolor"
41124124
version = "1.0.4"

src/librustc/session/config.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1292,6 +1292,8 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
12921292
"show macro backtraces even for non-local macros"),
12931293
teach: bool = (false, parse_bool, [TRACKED],
12941294
"show extended diagnostic help"),
1295+
terminal_width: Option<usize> = (None, parse_opt_uint, [UNTRACKED],
1296+
"set the current terminal width"),
12951297
continue_parse_after_error: bool = (false, parse_bool, [TRACKED],
12961298
"attempt to recover from parse errors (experimental)"),
12971299
dep_tasks: bool = (false, parse_bool, [UNTRACKED],

src/librustc/session/mod.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -1055,13 +1055,15 @@ fn default_emitter(
10551055
Some(source_map.clone()),
10561056
short,
10571057
sopts.debugging_opts.teach,
1058+
sopts.debugging_opts.terminal_width,
10581059
),
10591060
Some(dst) => EmitterWriter::new(
10601061
dst,
10611062
Some(source_map.clone()),
10621063
short,
10631064
false, // no teach messages when writing to a buffer
10641065
false, // no colors when writing to a buffer
1066+
None, // no terminal width
10651067
),
10661068
};
10671069
Box::new(emitter.ui_testing(sopts.debugging_opts.ui_testing))
@@ -1375,7 +1377,7 @@ pub fn early_error(output: config::ErrorOutputType, msg: &str) -> ! {
13751377
let emitter: Box<dyn Emitter + sync::Send> = match output {
13761378
config::ErrorOutputType::HumanReadable(kind) => {
13771379
let (short, color_config) = kind.unzip();
1378-
Box::new(EmitterWriter::stderr(color_config, None, short, false))
1380+
Box::new(EmitterWriter::stderr(color_config, None, short, false, None))
13791381
}
13801382
config::ErrorOutputType::Json { pretty, json_rendered } =>
13811383
Box::new(JsonEmitter::basic(pretty, json_rendered)),
@@ -1389,7 +1391,7 @@ pub fn early_warn(output: config::ErrorOutputType, msg: &str) {
13891391
let emitter: Box<dyn Emitter + sync::Send> = match output {
13901392
config::ErrorOutputType::HumanReadable(kind) => {
13911393
let (short, color_config) = kind.unzip();
1392-
Box::new(EmitterWriter::stderr(color_config, None, short, false))
1394+
Box::new(EmitterWriter::stderr(color_config, None, short, false, None))
13931395
}
13941396
config::ErrorOutputType::Json { pretty, json_rendered } =>
13951397
Box::new(JsonEmitter::basic(pretty, json_rendered)),

src/librustc_driver/lib.rs

+7-5
Original file line numberDiff line numberDiff line change
@@ -1156,11 +1156,13 @@ pub fn report_ices_to_stderr_if_any<F: FnOnce() -> R, R>(f: F) -> Result<R, Erro
11561156
// Thread panicked without emitting a fatal diagnostic
11571157
eprintln!("");
11581158

1159-
let emitter =
1160-
Box::new(errors::emitter::EmitterWriter::stderr(errors::ColorConfig::Auto,
1161-
None,
1162-
false,
1163-
false));
1159+
let emitter = Box::new(errors::emitter::EmitterWriter::stderr(
1160+
errors::ColorConfig::Auto,
1161+
None,
1162+
false,
1163+
false,
1164+
None,
1165+
));
11641166
let handler = errors::Handler::with_emitter(true, None, emitter);
11651167

11661168
// a .span_bug or .bug call has already printed what

src/librustc_errors/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ unicode-width = "0.1.4"
1818
atty = "0.2"
1919
termcolor = "1.0"
2020
annotate-snippets = "0.6.1"
21+
term_size = "0.3.1"

0 commit comments

Comments
 (0)