Skip to content

Commit 431ec35

Browse files
killerswanmarijnh
authored andcommitted
---
yaml --- r: 14446 b: refs/heads/try c: cec0534 h: refs/heads/master v: v3
1 parent d535f25 commit 431ec35

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5-
refs/heads/try: 6ea3d7935efba59d0b9d81f233e66ea69f1e1016
5+
refs/heads/try: cec053487c84e8b5406e24d6f9f72966cdcfd0da
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/try/src/comp/back/link.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@ mod write {
109109
// Decides what to call an intermediate file, given the name of the output
110110
// and the extension to use.
111111
fn mk_intermediate_name(output_path: str, extension: str) -> str unsafe {
112-
let stem = alt str::index_chars(output_path, '.') {
112+
let stem = alt str::index(output_path, '.') {
113113
option::some(dot_pos) {
114-
str::slice_chars(output_path, 0u, dot_pos)
114+
str::slice(output_path, 0u, dot_pos)
115115
}
116116
option::none { output_path }
117117
};

branches/try/src/libcore/str.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,9 @@ export
7070
lines_iter,
7171

7272
// Searching
73-
index_chars,
73+
//index_chars,
7474
index,
7575
index_from,
76-
//byte_index,
77-
//byte_index_from,
7876
rindex,
7977
//rindex_chars,
8078
find_chars,

0 commit comments

Comments
 (0)