File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 6ea3d7935efba59d0b9d81f233e66ea69f1e1016
2
+ refs/heads/master: cec053487c84e8b5406e24d6f9f72966cdcfd0da
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5
5
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf
Original file line number Diff line number Diff line change @@ -109,9 +109,9 @@ mod write {
109
109
// Decides what to call an intermediate file, given the name of the output
110
110
// and the extension to use.
111
111
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, '.' ) {
113
113
option:: some ( dot_pos) {
114
- str:: slice_chars ( output_path, 0 u, dot_pos)
114
+ str:: slice ( output_path, 0 u, dot_pos)
115
115
}
116
116
option:: none { output_path }
117
117
} ;
Original file line number Diff line number Diff line change @@ -70,11 +70,9 @@ export
70
70
lines_iter,
71
71
72
72
// Searching
73
- index_chars,
73
+ // index_chars,
74
74
index,
75
75
index_from,
76
- //byte_index,
77
- //byte_index_from,
78
76
rindex,
79
77
//rindex_chars,
80
78
find_chars,
You can’t perform that action at this time.
0 commit comments