Skip to content

Commit

Permalink
Remove ISASCII definition
Browse files Browse the repository at this point in the history
The ISASCII definition was moved to parse.y( ruby#8029 ), but the old definition wasn't removed.
  • Loading branch information
alitaso345 committed Jul 8, 2023
1 parent 5f91510 commit abc59b2
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions universal_parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit abc59b2

Please sign in to comment.