summaryrefslogtreecommitdiffstats
path: root/env.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-02-13 09:10:55 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-02-13 09:10:55 +0000
commita710af77c9728b7347e7db36a6f64df7d68b690d (patch)
tree8820bbe1bb80a8ce542b3e6105fcd7c306d38502 /env.h
parent581135e4fd4f0c44435f5bb1b62c0fad45d26215 (diff)
downloadruby-a710af77c9728b7347e7db36a6f64df7d68b690d.tar.gz
ruby-a710af77c9728b7347e7db36a6f64df7d68b690d.tar.xz
ruby-a710af77c9728b7347e7db36a6f64df7d68b690d.zip
* 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
Diffstat (limited to 'env.h')
-rw-r--r--env.h5
1 files changed, 2 insertions, 3 deletions
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;