diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-07-26 20:49:14 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-26 20:49:14 +0200 |
| commit | 43a38e7e55b94f43610b2f9ca02f3438bd4f6a02 (patch) | |
| tree | 09fbd004ad651913bfb548f2d1a8cc25b2c21855 | |
| parent | c6bfa7761ab19286e7d5a32b00c7fc0601cb3e47 (diff) | |
| parent | 2d92f4f2aa88b8f1740fd2d593b82820cdd336c5 (diff) | |
| download | rust-43a38e7e55b94f43610b2f9ca02f3438bd4f6a02.tar.gz rust-43a38e7e55b94f43610b2f9ca02f3438bd4f6a02.zip | |
Rollup merge of #114073 - ehuss:remove-z-diagnostic-width, r=fee1-dead
Remove -Z diagnostic-width This removes the `-Z diagnostic-width` option since it is ignored and does nothing. `-Z diagnostic-width` was stabilized as `--diagnostic-width` in #95635. It is not entirely clear why the `-Z` flag was kept, but in part its final use was removed in #102216, but the `-Z` flag itself was not removed.
| -rw-r--r-- | compiler/rustc_session/src/options.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_session/src/options.rs b/compiler/rustc_session/src/options.rs index c19c2d1dc9e..4a535f80b8a 100644 --- a/compiler/rustc_session/src/options.rs +++ b/compiler/rustc_session/src/options.rs @@ -1433,8 +1433,6 @@ options! { dep_tasks: bool = (false, parse_bool, [UNTRACKED], "print tasks that execute and the color their dep node gets (requires debug build) \ (default: no)"), - diagnostic_width: Option<usize> = (None, parse_opt_number, [UNTRACKED], - "set the current output width for diagnostic truncation"), dont_buffer_diagnostics: bool = (false, parse_bool, [UNTRACKED], "emit diagnostics rather than buffering (breaks NLL error downgrading, sorting) \ (default: no)"), |
