diff options
author | alitaso345 <[email protected]> | 2023-07-08 22:30:05 +0900 |
---|---|---|
committer | Yuichiro Kaneko <[email protected]> | 2023-07-09 08:16:00 +0900 |
commit | 2903e9456f6990c068008eb823b90715e5a21932 (patch) | |
tree | 0affe1da1b2bd1a7f80b96f6602041b5b9c76aed /universal_parser.c | |
parent | 5f915108da7fac276875e04f3d73eac0771ca170 (diff) |
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.
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/8043
Diffstat (limited to 'universal_parser.c')
-rw-r--r-- | universal_parser.c | 2 |
1 files changed, 0 insertions, 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 |