summaryrefslogtreecommitdiff
path: root/env.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-01-16 12:19:22 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-01-16 12:19:22 +0000
commit7ea2ceddb832b9973694fecac9fe3c30400735ba (patch)
treea9b60dec20fa5f7f52ca7c8113195f2d65728a22 /env.h
parent62e41d3f2e48422bbdf1bb2db83ae60b255b1a1a (diff)
This commit was generated by cvs2svn to compensate for changes in r11,
which included commits to RCS files with non-trunk default branches. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'env.h')
-rw-r--r--env.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/env.h b/env.h
index fb7b941d4d..ebcfcc5d31 100644
--- a/env.h
+++ b/env.h
@@ -15,7 +15,7 @@ extern struct FRAME {
int argc;
VALUE *argv;
ID last_func;
- struct RClass *last_class;
+ VALUE last_class;
VALUE cbase;
struct FRAME *prev;
char *file;
@@ -23,6 +23,8 @@ extern struct FRAME {
int iter;
} *the_frame;
+void gc_mark_frame _((struct FRAME *));
+
extern struct SCOPE {
struct RBasic super;
ID *local_tbl;
@@ -36,7 +38,7 @@ extern struct SCOPE {
extern int rb_in_eval;
-extern struct RClass *the_class;
+extern VALUE the_class;
struct RVarmap {
struct RBasic super;