Skip to content

Commit

Permalink
Rollup merge of rust-lang#53003 - GuillaumeGomez:stabilize-rustdoc-op…
Browse files Browse the repository at this point in the history
…tions, r=QuietMisdreavus

Stabilize --color and --error-format options in rustdoc

Fixes rust-lang#52980

cc @kennytm

r? @QuietMisdreavus
  • Loading branch information
cramertj authored Aug 3, 2018
2 parents e764022 + dda85ab commit 6df26f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/librustdoc/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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",
Expand Down

0 comments on commit 6df26f4

Please sign in to comment.