summaryrefslogtreecommitdiff
path: root/env.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-07-28 01:22:49 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-07-28 01:22:49 +0000
commit9531aef9eba120e3c75f6ade0931f97c92c7a43b (patch)
tree43f8665ff11cfe1951fa3956d23ac20e33019bdb /env.h
parent7b5b448a1e675015bd341e1303590d154557490c (diff)
* env.h: remove argv from ruby_frame.
* eval.c (rb_eval): no more copy on write. * eval.c (assign): ditto. * eval.c (rb_call0): can receive *rest by specifying negative argc. (-1 means 0 arg and *rest, -2 means 1 arg and *rest...) * eval.c (rb_call0): properly set frame's argc counter. * gc.c (rb_gc_mark_frame): need not to mark frame's argv * gc.c (run_final): wrong order of data. [ruby-dev:23948] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6708 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'env.h')
-rw-r--r--env.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/env.h b/env.h
index 3c6b3c45bc..c8aba37448 100644
--- a/env.h
+++ b/env.h
@@ -16,7 +16,6 @@
RUBY_EXTERN struct FRAME {
VALUE self;
int argc;
- VALUE *argv;
ID last_func;
ID orig_func;
VALUE last_class;