summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-05-25 04:58:02 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-05-25 04:58:02 +0000
commit45c61f40b23b14e97428206e1b813eb813526e6f (patch)
treebbffa6043ed1e8b6a501d23c3b4874ae3390ddd8 /eval.c
parent369fe1e8394b494c78d56aedfe6b0b809d7d1c10 (diff)
remove unused variables
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@222 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/eval.c b/eval.c
index 73d085304e..a8a5813522 100644
--- a/eval.c
+++ b/eval.c
@@ -619,6 +619,7 @@ VALUE the_class;
the_scope->flag |= SCOPE_NOSTACK;\
}\
the_scope = _old;\
+ scope_vmode = _vmode;\
}
static VALUE rb_eval _((VALUE,NODE*));
@@ -5110,10 +5111,9 @@ obj_method(obj, vid)
{
VALUE method;
VALUE klass = CLASS_OF(obj);
- ID mid, id;
+ ID id;
NODE *body;
int noex;
- enum node_type type;
struct METHOD *data;
id = rb_to_id(vid);