summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-07-19 06:15:05 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-07-19 06:23:19 +0900
commita027c4b5b0bc1d6786852249847e8a2f56404d1a (patch)
treeca57da42eaa8ba375514a139213b5e999851b943 /parse.y
parentd40d8b3caf40e0b1769bb4a196aa7740aef4737e (diff)
Use Qnull instead of 0 and Qundef
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y5
1 files changed, 1 insertions, 4 deletions
diff --git a/parse.y b/parse.y
index a950208e52..e6deefc978 100644
--- a/parse.y
+++ b/parse.y
@@ -5100,10 +5100,7 @@ opt_f_block_arg : ',' f_block_arg
}
| none
{
- /*%%%*/
- $$ = 0;
- /*% %*/
- /*% ripper: Qundef %*/
+ $$ = Qnull;
}
;