Improve formatting of tables.rs

Make unicode.py generate a tables.rs which is more conformant to usual
Rust formatting (as per `rustfmt`).
This commit is contained in:
Andrea Canciani 2016-01-04 17:27:51 +01:00
parent eab351ef3e
commit b081436ca4

View file

@ -326,15 +326,15 @@ def emit_conversions_module(f, to_upper, to_lower, to_title):
pub fn to_lower(c: char) -> [char; 3] {
match bsearch_case_table(c, to_lowercase_table) {
None => [c, '\\0', '\\0'],
Some(index) => to_lowercase_table[index].1
None => [c, '\\0', '\\0'],
Some(index) => to_lowercase_table[index].1,
}
}
pub fn to_upper(c: char) -> [char; 3] {
match bsearch_case_table(c, to_uppercase_table) {
None => [c, '\\0', '\\0'],
Some(index) => to_uppercase_table[index].1
Some(index) => to_uppercase_table[index].1,
}
}