summaryrefslogtreecommitdiff
path: root/universal_parser.c
diff options
context:
space:
mode:
authoralitaso345 <alice.maru345@gmail.com>2023-07-08 22:30:05 +0900
committerYuichiro Kaneko <spiketeika@gmail.com>2023-07-09 08:16:00 +0900
commit2903e9456f6990c068008eb823b90715e5a21932 (patch)
tree0affe1da1b2bd1a7f80b96f6602041b5b9c76aed /universal_parser.c
parent5f915108da7fac276875e04f3d73eac0771ca170 (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.c2
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