Skip to content

Commit

Permalink
Rollup merge of rust-lang#59363 - peterjoel:issue_59361_edition_opt_s…
Browse files Browse the repository at this point in the history
…hortlist, r=nagisa

rust-lang#59361 Moved rustc edition opt to short list

Addresses rust-lang#59361, in case that issue is accepted.
  • Loading branch information
Centril authored Mar 28, 2019
2 parents 9ca8f6a + 3eb4eae commit f591d25
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/librustc/session/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1706,6 +1706,12 @@ pub fn rustc_short_optgroups() -> Vec<RustcOptGroup> {
"Specify the name of the crate being built",
"NAME",
),
opt::opt_s(
"",
"edition",
"Specify which edition of the compiler to use when compiling code.",
EDITION_NAME_LIST,
),
opt::multi_s(
"",
"emit",
Expand Down Expand Up @@ -1808,12 +1814,6 @@ pub fn rustc_optgroups() -> Vec<RustcOptGroup> {
`expanded,identified` (fully parenthesized, AST nodes with IDs).",
"TYPE",
),
opt::opt_s(
"",
"edition",
"Specify which edition of the compiler to use when compiling code.",
EDITION_NAME_LIST,
),
opt::multi_s(
"",
"remap-path-prefix",
Expand Down

0 comments on commit f591d25

Please sign in to comment.