Get rid of a breakpoint left in parse.y

This commit is contained in:
Takashi Kokubun 2023-04-10 11:22:12 -07:00
parent 2e50c07e23
commit 4af9bd52cb

View File

@ -7913,7 +7913,6 @@ parse_string(struct parser_params *p, rb_strterm_literal_t *quote)
}
c = nextc(p);
if ((func & STR_FUNC_QWORDS) && ISSPACE(c)) {
ruby_debug_breakpoint();
while (c != '\n' && ISSPACE(c = nextc(p)));
space = 1;
}