Skip to content

Commit 77364ea

Browse files
committed
---
yaml --- r: 65785 b: refs/heads/master c: bbe3d4a h: refs/heads/master i: 65783: 34cda49 v: v3
1 parent 02e533a commit 77364ea

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 004816f4c6fa3902c69667761f52afb04cb2d62f
2+
refs/heads/master: bbe3d4a9dc7eae6b53871d0a59d56372c2c03479
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 18e3db7392d2d0697b7e27d6d986139960144d85
55
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9

trunk/src/libstd/run.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ fn spawn_process_os(prog: &str, args: &[~str],
523523
CloseHandle(si.hStdOutput);
524524
CloseHandle(si.hStdError);
525525

526-
for create_err.each |msg| {
526+
for create_err.iter().advance |msg| {
527527
fail!("failure in CreateProcess: %s", *msg);
528528
}
529529

@@ -589,7 +589,7 @@ pub fn make_command_line(prog: &str, args: &[~str]) -> ~str {
589589
return cmd;
590590

591591
fn append_arg(cmd: &mut ~str, arg: &str) {
592-
let quote = arg.iter().any(|c| c == ' ' || c == '\t');
592+
let quote = arg.iter().any_(|c| c == ' ' || c == '\t');
593593
if quote {
594594
cmd.push_char('"');
595595
}

0 commit comments

Comments
 (0)