Rollup merge of #53003 - GuillaumeGomez:stabilize-rustdoc-options, r=QuietMisdreavus
Stabilize --color and --error-format options in rustdoc Fixes #52980 cc @kennytm r? @QuietMisdreavus
This commit is contained in:
commit
7a23b5dec3
1 changed files with 2 additions and 2 deletions
|
@ -290,7 +290,7 @@ fn opts() -> Vec<RustcOptGroup> {
|
|||
"edition to use when compiling rust code (default: 2015)",
|
||||
"EDITION")
|
||||
}),
|
||||
unstable("color", |o| {
|
||||
stable("color", |o| {
|
||||
o.optopt("",
|
||||
"color",
|
||||
"Configure coloring of output:
|
||||
|
@ -299,7 +299,7 @@ fn opts() -> Vec<RustcOptGroup> {
|
|||
never = never colorize output",
|
||||
"auto|always|never")
|
||||
}),
|
||||
unstable("error-format", |o| {
|
||||
stable("error-format", |o| {
|
||||
o.optopt("",
|
||||
"error-format",
|
||||
"How errors and other messages are produced",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue