Skip to content

Commit 286968c

Browse files
committed
---
yaml --- r: 141247 b: refs/heads/try2 c: a6b05b3 h: refs/heads/master i: 141245: 6d344f1 141243: fda924c 141239: 0613fc8 141231: e4d5449 141215: 55fed12 141183: 5ed487b v: v3
1 parent 4c01ff3 commit 286968c

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: 998cbbd7390c6472a5770687f93c7a18bf9dc59f
8+
refs/heads/try2: a6b05b385adea5628ee01d4c958e18392f603872
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/src/librustc/driver/driver.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,7 @@ pub fn optgroups() -> ~[getopts::groups::OptGroup] {
811811
for detail)", "FEATURE"),
812812
optopt("", "android-cross-path",
813813
"The path to the Android NDK", "PATH"),
814-
optmulti("W", "warn",
814+
optflagopt("W", "warn",
815815
"Set lint warnings", "OPT"),
816816
optmulti("A", "allow",
817817
"Set lint allowed", "OPT"),

branches/try2/src/librustc/rustc.rc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,14 @@ pub fn run_compiler(args: &~[~str], demitter: diagnostic::Emitter) {
228228
return;
229229
}
230230

231+
// Display the available lint options if "-W help" or only "-W" is given.
231232
let lint_flags = vec::append(getopts::opt_strs(matches, "W"),
232233
getopts::opt_strs(matches, "warn"));
233-
if lint_flags.contains(&~"help") {
234+
235+
let show_lint_options = lint_flags.contains(&~"help") ||
236+
(opt_present(matches, "W") && lint_flags.is_empty());
237+
238+
if show_lint_options {
234239
describe_warnings();
235240
return;
236241
}

0 commit comments

Comments
 (0)