Merge pull request #2200 from wkral/percent-graphic-char

Add '%' to the list of graphic_chars (#2119)
This commit is contained in:
Mark Thom
2023-12-03 23:02:05 -07:00
committed by GitHub

View File

@@ -112,7 +112,7 @@ macro_rules! exponent_char {
#[macro_export] #[macro_export]
macro_rules! graphic_char { macro_rules! graphic_char {
($c: expr) => ($crate::char_class!($c, ['#', '$', '&', '*', '+', '-', '.', '/', ':', ($c: expr) => ($crate::char_class!($c, ['#', '$', '&', '*', '+', '-', '.', '/', ':',
'<', '=', '>', '?', '@', '^', '~'])) '<', '=', '>', '?', '@', '^', '~', '%']))
} }
#[macro_export] #[macro_export]