summaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-14 00:08:45 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-14 00:08:45 +0000
commit9ba43ab6d48968eaced9b0452e6f6bd45ddee7fa (patch)
tree7c75aa56aaf5fad686a7e2dc8744114bf9d97830 /compile.c
parent3e874eae07195440e6f8137f2f01084a6d3482a8 (diff)
* compile.c (defined_expr): no longer distinguish ordinary local
variables and in-block local variables in defined? value. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11719 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/compile.c b/compile.c
index 06446bb36d..514398565a 100644
--- a/compile.c
+++ b/compile.c
@@ -2334,10 +2334,8 @@ defined_expr(rb_iseq_t *iseq, LINK_ANCHOR *ret,
/* variables */
case NODE_LVAR:
- estr = "local-variable";
- break;
case NODE_DVAR:
- estr = "local-variable(in-block)";
+ estr = "local-variable";
break;
case NODE_IVAR: