about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2023-07-25 14:00:56 -0700
committerEric Huss <eric@huss.org>2023-07-25 14:00:56 -0700
commit2d92f4f2aa88b8f1740fd2d593b82820cdd336c5 (patch)
tree5c2b77b2ff1a709e106eafabbf10650a1ab6871e
parent18fa7b9104aad0cbaba6d9aff8e19d6b96eedcef (diff)
downloadrust-2d92f4f2aa88b8f1740fd2d593b82820cdd336c5.tar.gz
rust-2d92f4f2aa88b8f1740fd2d593b82820cdd336c5.zip
Remove -Z diagnostic-width
-rw-r--r--compiler/rustc_session/src/options.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_session/src/options.rs b/compiler/rustc_session/src/options.rs
index ff433fdf16d..16d2029626e 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)"),