From b081436ca4e20c864436bf12a0b0fa4bb82c049a Mon Sep 17 00:00:00 2001 From: Andrea Canciani Date: Mon, 4 Jan 2016 17:27:51 +0100 Subject: [PATCH] Improve formatting of tables.rs Make unicode.py generate a tables.rs which is more conformant to usual Rust formatting (as per `rustfmt`). --- src/etc/unicode.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/etc/unicode.py b/src/etc/unicode.py index 4452be10bc27..5a9fbdd32404 100755 --- a/src/etc/unicode.py +++ b/src/etc/unicode.py @@ -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, } }