Skip to content

Commit 3919965

Browse files
committed
---
yaml --- r: 23215 b: refs/heads/master c: fe96716 h: refs/heads/master i: 23213: 6937cda 23211: 5aff157 23207: 2fae76c 23199: 6b198a0 v: v3
1 parent 9078d9e commit 3919965

File tree

3 files changed

+3
-3
lines changed

3 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: 138dc3048af36f0a20f857542c357fe8df563013
2+
refs/heads/master: fe96716a2ac951562994dfc81a845f7301bf1954
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
55
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be

trunk/src/rustdoc/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ fn default_config(input_crate: ~str) -> config {
7777
}
7878
}
7979

80-
type program_output = fn~(~str, ~[~str]) ->
80+
type program_output = fn~((&str), (&[~str])) ->
8181
{status: int, out: ~str, err: ~str};
8282

8383
fn mock_program_output(_prog: ~str, _args: ~[~str]) -> {

trunk/src/rustdoc/markdown_writer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ fn pandoc_writer(
9797
let pipe_out = os::pipe();
9898
let pipe_err = os::pipe();
9999
let pid = run::spawn_process(
100-
pandoc_cmd, pandoc_args, none, none,
100+
pandoc_cmd, pandoc_args, &none, &none,
101101
pipe_in.in, pipe_out.out, pipe_err.out);
102102
103103
let writer = io::fd_writer(pipe_in.out, false);

0 commit comments

Comments
 (0)