fix unicode in parameters crashing
Tholp1 7 months ago da6c7a4a b7afa10e
··· 41 41 } 42 42 43 43 let mut i = 0; 44 44 - while i < tok.len() { 44 44 + while i < tok.chars().count() { 45 45 let c = tok.chars().nth(i).unwrap(); 46 46 i += 1; 47 47