Skip to content

Commit 6e2a7bf

Browse files
committedJul 27, 2011
Fix damage done by the pretty-printer
1 parent df7f21d commit 6e2a7bf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+678
-413
lines changed
 

‎src/comp/back/link.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -340,10 +340,8 @@ fn build_link_meta(sess: &session::session, c: &ast::crate, output: &str,
340340
ret alt metas.name {
341341
some(v) { v }
342342
none. {
343-
let
344-
// FIXME: Remove this vec->ivec conversion.
345-
346-
name =
343+
// FIXME: Remove this vec->ivec conversion.
344+
let name =
347345
{
348346
let os_vec =
349347
str::split(fs::basename(output), '.' as u8);

‎src/comp/driver/rustc.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,8 @@ fn build_configuration(sess: session::session, argv0: str, input: str) ->
6565
// some default and generated configuration items
6666
let default_cfg = default_configuration(sess, argv0, input);
6767
let user_cfg = sess.get_opts().cfg;
68-
let
69-
// If the user wants a test runner, then add the test cfg
70-
gen_cfg =
68+
// If the user wants a test runner, then add the test cfg
69+
let gen_cfg =
7170
{
7271
if sess.get_opts().test && !attr::contains_name(user_cfg, "test")
7372
{

0 commit comments

Comments
 (0)
Please sign in to comment.