diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-02-14 00:08:45 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-02-14 00:08:45 +0000 |
| commit | 5143f3f1555fe7cf256f767c886f84b2e913e161 (patch) | |
| tree | 7c75aa56aaf5fad686a7e2dc8744114bf9d97830 | |
| parent | 21fe44daf4e58cf82ba9745ab6c6fe80f5428cf3 (diff) | |
| download | ruby-5143f3f1555fe7cf256f767c886f84b2e913e161.tar.gz ruby-5143f3f1555fe7cf256f767c886f84b2e913e161.tar.xz ruby-5143f3f1555fe7cf256f767c886f84b2e913e161.zip | |
* compile.c (defined_expr): no longer distinguish ordinary local
variables and in-block local variables in defined? value.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11719 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | compile.c | 4 |
2 files changed, 6 insertions, 3 deletions
@@ -1,3 +1,8 @@ +Wed Feb 14 08:46:25 2007 Yukihiro Matsumoto <matz@ruby-lang.org> + + * compile.c (defined_expr): no longer distinguish ordinary local + variables and in-block local variables in defined? value. + Wed Feb 14 03:14:42 2007 Yukihiro Matsumoto <matz@ruby-lang.org> * lib/uri/generic.rb (URI::Generic::userinfo): should support @@ -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: |
