ENHANCED: allow Roman numerals in strings
Example:
?- X = "ↁ".
X = "ↁ".
This addresses #1790.
This commit is contained in:
@@ -20,7 +20,7 @@ macro_rules! alpha_char {
|
|||||||
#[macro_export]
|
#[macro_export]
|
||||||
macro_rules! alpha_numeric_char {
|
macro_rules! alpha_numeric_char {
|
||||||
($c: expr) => {
|
($c: expr) => {
|
||||||
$crate::alpha_char!($c) || $crate::decimal_digit_char!($c)
|
$crate::alpha_char!($c) || $c.is_numeric()
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user