From a710af77c9728b7347e7db36a6f64df7d68b690d Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 13 Feb 2006 09:10:55 +0000 Subject: * eval.c (rb_call0): argument update propagation. [ruby-dev:28044] * env.h: remove argc member from struct FRAME. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9920 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- env.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'env.h') diff --git a/env.h b/env.h index c47c01d9d..311113323 100644 --- a/env.h +++ b/env.h @@ -16,7 +16,6 @@ extern struct FRAME { VALUE self; int argc; - VALUE *argv; ID last_func; ID orig_func; VALUE last_class; @@ -30,8 +29,8 @@ extern struct FRAME { void rb_gc_mark_frame _((struct FRAME *)); -#define FRAME_ALLOCA 0 -#define FRAME_MALLOC 1 +#define FRAME_DMETH 1 +#define FRAME_FUNC 2 extern struct SCOPE { struct RBasic super; -- cgit