1
Fork 0

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:
kennytm 2018-08-04 14:35:56 +08:00 committed by GitHub
commit 7a23b5dec3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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",