8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4000eb commit 3017124Copy full SHA for 3017124
ChangeLog
@@ -1,3 +1,8 @@
1
+Sun Apr 20 03:09:30 2003 WATANABE Hirofumi <eban@ruby-lang.org>
2
+
3
+ * parse.y (void_expr0): node might become NULL after calling
4
+ remove_begin().
5
6
Wed Apr 9 16:14:24 2003 NAKAMURA Usaku <usa@ruby-lang. 97AE org>
7
8
* ext/extmk.rb.in (create_makefile): link @LIBS@.
parse.y
@@ -4595,9 +4595,9 @@ void_expr0(node)
4595
char *useless = 0;
4596
4597
if (!RTEST(ruby_verbose)) return;
4598
- if (!node) return;
4599
4600
again:
+ if (!node) return;
4601
switch (nd_type(node)) {
4602
case NODE_NEWLINE:
4603
node = node->nd_next;
0 commit comments