From 2903e9456f6990c068008eb823b90715e5a21932 Mon Sep 17 00:00:00 2001 From: alitaso345 Date: Sat, 8 Jul 2023 22:30:05 +0900 Subject: [PATCH] Remove ISASCII definition The ISASCII definition was moved to parse.y( https://github.com/ruby/ruby/pull/8029 ), but the old definition wasn't removed. --- universal_parser.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/universal_parser.c b/universal_parser.c index 8599c3b947..bdd6829ea6 100644 --- a/universal_parser.c +++ b/universal_parser.c @@ -345,8 +345,6 @@ struct rb_imemo_tmpbuf_struct { #undef ISSPACE #define ISSPACE(c) ((p->config->isspace)(c)) -#undef ISASCII -#define ISASCII(c) ((p->config->isascii)(c)) #undef ISCNTRL #define ISCNTRL(c) ((p->config->iscntrl)(c)) #undef ISALPHA