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.
This commit is contained in:
alitaso345 2023-07-08 22:30:05 +09:00 committed by Yuichiro Kaneko
parent 5f915108da
commit 2903e9456f
Notes: git 2023-07-08 23:16:19 +00:00

View File

@ -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