Skip to content

Commit dc6858c

Browse files
committed
---
yaml --- r: 63230 b: refs/heads/snap-stage3 c: eecbe55 h: refs/heads/master v: v3
1 parent 7366337 commit dc6858c

File tree

7 files changed

+3
-9
lines changed

7 files changed

+3
-9
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 2d28d645422c1617be58c8ca7ad9a457264ca850
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 26d7b460a37805b89f559b821960f02034a36c98
4+
refs/heads/snap-stage3: eecbe5556b96aa5546ede9454483a53b25d3380a
55
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/librust/rust.rc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ use core::io;
3636
use core::os;
3737
use core::run;
3838
use core::libc::exit;
39-
use core::str;
4039

4140
// For bootstrapping.
4241
mod std {

branches/snap-stage3/src/librustdoc/attr_parser.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ an AST's attributes.
1717

1818
use core::prelude::*;
1919

20-
use core::str;
2120
use syntax::ast;
2221
use syntax::attr;
2322

branches/snap-stage3/src/librustdoc/escape_pass.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313
use pass::Pass;
1414
use text_pass;
1515

16-
use core::str;
17-
1816
pub fn mk_pass() -> Pass {
1917
text_pass::mk_pass(~"escape", escape)
2018
}

branches/snap-stage3/src/librustdoc/markdown_index_pass.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ use markdown_pass;
2222
use markdown_writer;
2323
use pass::Pass;
2424

25-
use core::str;
26-
2725
pub fn mk_pass(config: config::Config) -> Pass {
2826
Pass {
2927
name: ~"markdown_index",

branches/snap-stage3/src/librustpkg/package_path.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
use core::path::Path;
1414
use core::option::Some;
15-
use core::{hash, str};
15+
use core::hash;
1616
use core::rt::io::Writer;
1717
use core::hash::Streaming;
1818

branches/snap-stage3/src/librustpkg/package_source.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ impl PkgSrc {
183183
if self.libs.is_empty() && self.mains.is_empty()
184184
&& self.tests.is_empty() && self.benchs.is_empty() {
185185

186-
note(~"Couldn't infer any crates to build.\n\
186+
note("Couldn't infer any crates to build.\n\
187187
Try naming a crate `main.rs`, `lib.rs`, \
188188
`test.rs`, or `bench.rs`.");
189189
cond.raise(copy self.id);

0 commit comments

Comments
 (0)