* parse.y (block_append, new_evstr, void_expr0): remove no longer used
labels. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5614 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f57217cc52
commit
847d01a7c3
@ -1,3 +1,8 @@
|
||||
Mon Feb 2 22:06:31 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* parse.y (block_append, new_evstr, void_expr0): remove no longer used
|
||||
labels.
|
||||
|
||||
Mon Feb 2 18:45:50 2004 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||
|
||||
* dln.c (dln_load): don't specify RTLD_GLOBAL on Interix,
|
||||
@ -82,7 +87,7 @@ Thu Jan 29 19:28:16 2004 Minero Aoki <aamine@loveruby.net>
|
||||
Thu Jan 29 18:54:08 2004 H.Yamamoto <ocean@m2.ccsnet.ne.jp>.
|
||||
|
||||
* dir.c (glob_helper): infinite loop bug in win32 code.
|
||||
[ruby-dev:22770]
|
||||
[ruby-dev:22770]
|
||||
|
||||
Thu Jan 29 17:03:49 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
|
4
parse.y
4
parse.y
@ -4501,7 +4501,6 @@ block_append(head, tail)
|
||||
|
||||
if (tail == 0) return head;
|
||||
|
||||
again:
|
||||
if (h == 0) return tail;
|
||||
switch (nd_type(h)) {
|
||||
case NODE_LIT:
|
||||
@ -4521,7 +4520,6 @@ block_append(head, tail)
|
||||
|
||||
if (RTEST(ruby_verbose)) {
|
||||
NODE *nd = end->nd_head;
|
||||
newline:
|
||||
switch (nd_type(nd)) {
|
||||
case NODE_RETURN:
|
||||
case NODE_BREAK:
|
||||
@ -4658,7 +4656,6 @@ new_evstr(node)
|
||||
{
|
||||
NODE *head = node;
|
||||
|
||||
again:
|
||||
if (node) {
|
||||
switch (nd_type(node)) {
|
||||
case NODE_STR: case NODE_DSTR: case NODE_EVSTR:
|
||||
@ -4995,7 +4992,6 @@ void_expr0(node)
|
||||
|
||||
if (!RTEST(ruby_verbose)) return;
|
||||
|
||||
again:
|
||||
if (!node) return;
|
||||
switch (nd_type(node)) {
|
||||
case NODE_CALL:
|
||||
|
Loading…
x
Reference in New Issue
Block a user