diff options
| author | kennytm <kennytm@gmail.com> | 2018-08-04 14:35:56 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-04 14:35:56 +0800 |
| commit | 7a23b5dec33d615a55f1cc6ca339fcd5ada1cab2 (patch) | |
| tree | d89652b8268d87e42cd78e94b0ca276a2d7b0896 | |
| parent | d028b3ea338ccb1daa7780d69eb079eed39d8f5c (diff) | |
| parent | dda85abf099fc6f9f42ee270102117326d4b5184 (diff) | |
| download | rust-7a23b5dec33d615a55f1cc6ca339fcd5ada1cab2.tar.gz rust-7a23b5dec33d615a55f1cc6ca339fcd5ada1cab2.zip | |
Rollup merge of #53003 - GuillaumeGomez:stabilize-rustdoc-options, r=QuietMisdreavus
Stabilize --color and --error-format options in rustdoc Fixes #52980 cc @kennytm r? @QuietMisdreavus
| -rw-r--r-- | src/librustdoc/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs index 0a4955f4fbd..dda97cfdb2c 100644 --- a/src/librustdoc/lib.rs +++ b/src/librustdoc/lib.rs @@ -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", |
