Commit e96bbd7
committed
Remove needless parse.y
In the past parse.y and ripper had different `new_nil` definition
so that `new_nil` returns `nil` for ripper.
```c
// parse.y
#define new_nil(loc) NEW_NIL(loc)
// ripper
#define new_nil(loc) Qnil
```
However Rearchitect Ripper (89cfc15)
removed `new_nil` definition for ripper then this commit removes
needless parse.y macro and uses `NEW_NIL` directly.new_nil macro1 parent b79ef73 commit e96bbd7
1 file changed
+1
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1393 | 1393 | | |
1394 | 1394 | | |
1395 | 1395 | | |
1396 | | - | |
1397 | 1396 | | |
1398 | 1397 | | |
1399 | 1398 | | |
| |||
4451 | 4450 | | |
4452 | 4451 | | |
4453 | 4452 | | |
4454 | | - | |
| 4453 | + | |
4455 | 4454 | | |
4456 | 4455 | | |
4457 | 4456 | | |
| |||
0 commit comments