ADDED VERY IMPORTANT CHANGE

trunk
ondra05 2022-06-02 23:56:32 +02:00
parent 32f3bf471e
commit a0c8e41296
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ pub const fn char2num(c: char) -> isize {
'/' => 53,
'\\' => 54,
'.' => 55,
'U' => -210,
'U' => -210, // Backwards compatibility
'A'..='Z' => -(c as isize) + 64,
'a'..='z' => (c as isize) - 96,
_ => 0,