Merge pull request #1799 from triska/roman_numerals

ENHANCED: allow Roman numerals in strings
This commit is contained in:
Mark Thom
2023-05-04 21:25:03 -06:00
committed by GitHub

View File

@@ -20,7 +20,7 @@ macro_rules! alpha_char {
#[macro_export]
macro_rules! alpha_numeric_char {
($c: expr) => {
$crate::alpha_char!($c) || $crate::decimal_digit_char!($c)
$crate::alpha_char!($c) || $c.is_numeric()
};
}