summaryrefslogtreecommitdiffstats
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
commitaf92158dc5812a3369fd092093111f38354134e5 (patch)
tree43f8665ff11cfe1951fa3956d23ac20e33019bdb /env.h
parent6cf533b6856065157139b343d9a3535a78488aa7 (diff)
downloadruby-af92158dc5812a3369fd092093111f38354134e5.tar.gz
ruby-af92158dc5812a3369fd092093111f38354134e5.tar.xz
ruby-af92158dc5812a3369fd092093111f38354134e5.zip
* 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: http://svn.ruby-lang.org/repos/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 3c6b3c45b..c8aba3744 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;