summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-04-10 11:22:12 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2023-04-10 11:22:12 -0700
commit4af9bd52cbb8cff7d149a8565012ab1153a4b5b1 (patch)
tree661265d2d3f43ec9de1c8c44bbf45758eb7fccb6 /parse.y
parent2e50c07e2315e7e66acc567496f70c3e0ff895b2 (diff)
downloadruby-4af9bd52cbb8cff7d149a8565012ab1153a4b5b1.tar.gz
Get rid of a breakpoint left in parse.y
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y1
1 files changed, 0 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index a332c31838..4facf993b0 100644
--- a/parse.y
+++ b/parse.y
@@ -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;
}