Skip to content

Commit

Permalink
Merge pull request #1799 from triska/roman_numerals
Browse files Browse the repository at this point in the history
ENHANCED: allow Roman numerals in strings
  • Loading branch information
mthom committed May 5, 2023
2 parents e4b19dc + e951db6 commit 57ef706
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
};
}

Expand Down

0 comments on commit 57ef706

Please sign in to comment.