From: William Kral Date: Mon, 4 Dec 2023 06:19:59 +0000 (-0800) Subject: Revert "Add '%' to the list of graphic_chars (#2199)" X-Git-Tag: v0.9.4~88^2 X-Git-Url: https://git.sagredo.dev/?a=commitdiff_plain;h=7f5c56a2a854d9721638db030160a37cd466cf94;p=scryer-prolog.git Revert "Add '%' to the list of graphic_chars (#2199)" --- diff --git a/src/parser/macros.rs b/src/parser/macros.rs index 7922b044..ecf629f8 100644 --- a/src/parser/macros.rs +++ b/src/parser/macros.rs @@ -112,7 +112,7 @@ macro_rules! exponent_char { #[macro_export] macro_rules! graphic_char { ($c: expr) => ($crate::char_class!($c, ['#', '$', '&', '*', '+', '-', '.', '/', ':', - '<', '=', '>', '?', '@', '^', '~', '%'])) + '<', '=', '>', '?', '@', '^', '~'])) } #[macro_export]