File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed 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